示例#1
0
        /// <summary>
        /// Put complex types that are polymorphic and have recursive references
        /// </summary>
        /// <param name='complexBody'>
        /// Please put a salmon that looks like this:
        /// {
        /// "fishtype": "salmon",
        /// "species": "king",
        /// "length": 1,
        /// "age": 1,
        /// "location": "alaska",
        /// "iswild": true,
        /// "siblings": [
        /// {
        /// "fishtype": "shark",
        /// "species": "predator",
        /// "length": 20,
        /// "age": 6,
        /// "siblings": [
        /// {
        /// "fishtype": "salmon",
        /// "species": "coho",
        /// "length": 2,
        /// "age": 2,
        /// "location": "atlantic",
        /// "iswild": true,
        /// "siblings": [
        /// {
        /// "fishtype": "shark",
        /// "species": "predator",
        /// "length": 20,
        /// "age": 6
        /// },
        /// {
        /// "fishtype": "sawshark",
        /// "species": "dangerous",
        /// "length": 10,
        /// "age": 105
        /// }
        /// ]
        /// },
        /// {
        /// "fishtype": "sawshark",
        /// "species": "dangerous",
        /// "length": 10,
        /// "age": 105
        /// }
        /// ]
        /// },
        /// {
        /// "fishtype": "sawshark",
        /// "species": "dangerous",
        /// "length": 10,
        /// "age": 105
        /// }
        /// ]
        /// }
        /// </param>
        /// <param name='customHeaders'>
        /// Headers that will be added to request.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        /// <exception cref="ErrorException">
        /// Thrown when the operation returned an invalid status code
        /// </exception>
        /// <exception cref="ValidationException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <exception cref="System.ArgumentNullException">
        /// Thrown when a required parameter is null
        /// </exception>
        /// <return>
        /// A response object containing the response body and response headers.
        /// </return>
        public async Task <AzureOperationResponse> PutValidWithHttpMessagesAsync(FishInner complexBody, Dictionary <string, List <string> > customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
        {
            if (complexBody == null)
            {
                throw new ValidationException(ValidationRules.CannotBeNull, "complexBody");
            }
            if (complexBody != null)
            {
                complexBody.Validate();
            }
            // Tracing
            bool   _shouldTrace  = ServiceClientTracing.IsEnabled;
            string _invocationId = null;

            if (_shouldTrace)
            {
                _invocationId = ServiceClientTracing.NextInvocationId.ToString();
                Dictionary <string, object> tracingParameters = new Dictionary <string, object>();
                tracingParameters.Add("complexBody", complexBody);
                tracingParameters.Add("cancellationToken", cancellationToken);
                ServiceClientTracing.Enter(_invocationId, this, "PutValid", tracingParameters);
            }
            // Construct URL
            var           _baseUrl         = Client.BaseUri.AbsoluteUri;
            var           _url             = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "complex/polymorphicrecursive/valid").ToString();
            List <string> _queryParameters = new List <string>();

            if (_queryParameters.Count > 0)
            {
                _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters);
            }
            // Create HTTP transport objects
            var _httpRequest = new System.Net.Http.HttpRequestMessage();

            System.Net.Http.HttpResponseMessage _httpResponse = null;
            _httpRequest.Method     = new System.Net.Http.HttpMethod("PUT");
            _httpRequest.RequestUri = new System.Uri(_url);
            // Set Headers
            if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value)
            {
                _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString());
            }
            if (Client.AcceptLanguage != null)
            {
                if (_httpRequest.Headers.Contains("accept-language"))
                {
                    _httpRequest.Headers.Remove("accept-language");
                }
                _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage);
            }


            if (customHeaders != null)
            {
                foreach (var _header in customHeaders)
                {
                    if (_httpRequest.Headers.Contains(_header.Key))
                    {
                        _httpRequest.Headers.Remove(_header.Key);
                    }
                    _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
                }
            }

            // Serialize Request
            string _requestContent = null;

            if (complexBody != null)
            {
                _requestContent      = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(complexBody, Client.SerializationSettings);
                _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8);
                _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8");
            }
            // Set Credentials
            if (Client.Credentials != null)
            {
                cancellationToken.ThrowIfCancellationRequested();
                await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
            }
            // Send Request
            if (_shouldTrace)
            {
                ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
            }
            cancellationToken.ThrowIfCancellationRequested();
            _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);

            if (_shouldTrace)
            {
                ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
            }
            HttpStatusCode _statusCode = _httpResponse.StatusCode;

            cancellationToken.ThrowIfCancellationRequested();
            string _responseContent = null;

            if ((int)_statusCode != 200)
            {
                var ex = new ErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
                try
                {
                    _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);

                    Error _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject <Error>(_responseContent, Client.DeserializationSettings);
                    if (_errorBody != null)
                    {
                        ex.Body = _errorBody;
                    }
                }
                catch (JsonException)
                {
                    // Ignore the exception
                }
                ex.Request  = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
                ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
                if (_shouldTrace)
                {
                    ServiceClientTracing.Error(_invocationId, ex);
                }
                _httpRequest.Dispose();
                if (_httpResponse != null)
                {
                    _httpResponse.Dispose();
                }
                throw ex;
            }
            // Create Result
            var _result = new AzureOperationResponse();

            _result.Request  = _httpRequest;
            _result.Response = _httpResponse;
            if (_httpResponse.Headers.Contains("x-ms-request-id"))
            {
                _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault();
            }
            if (_shouldTrace)
            {
                ServiceClientTracing.Exit(_invocationId, _result);
            }
            return(_result);
        }
示例#2
0
 /// <summary>
 /// Put complex types that are polymorphic, attempting to omit required
 /// 'birthday' field - the request should not be allowed from the client
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please attempt put a sawshark that looks like this, the client should not
 /// allow this data to be sent:
 /// {
 /// "fishtype": "sawshark",
 /// "species": "snaggle toothed",
 /// "length": 18.5,
 /// "age": 2,
 /// "birthday": "2013-06-01T01:00:00Z",
 /// "location": "alaska",
 /// "picture": base64(FF FF FF FF FE),
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "birthday": "2012-01-05T01:00:00Z",
 /// "length": 20,
 /// "age": 6
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "picture": base64(FF FF FF FF FE),
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// }
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task PutValidMissingRequiredAsync(this IPolymorphismOperations operations, FishInner complexBody, CancellationToken cancellationToken = default(CancellationToken))
 {
     await operations.PutValidMissingRequiredWithHttpMessagesAsync(complexBody, null, cancellationToken).ConfigureAwait(false);
 }
示例#3
0
 /// <summary>
 /// Put complex types that are polymorphic
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please put a salmon that looks like this:
 /// {
 /// 'fishtype':'Salmon',
 /// 'location':'alaska',
 /// 'iswild':true,
 /// 'species':'king',
 /// 'length':1.0,
 /// 'siblings':[
 /// {
 /// 'fishtype':'Shark',
 /// 'age':6,
 /// 'birthday': '2012-01-05T01:00:00Z',
 /// 'length':20.0,
 /// 'species':'predator',
 /// },
 /// {
 /// 'fishtype':'Sawshark',
 /// 'age':105,
 /// 'birthday': '1900-01-05T01:00:00Z',
 /// 'length':10.0,
 /// 'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
 /// 'species':'dangerous',
 /// },
 /// {
 /// 'fishtype': 'goblin',
 /// 'age': 1,
 /// 'birthday': '2015-08-08T00:00:00Z',
 /// 'length': 30.0,
 /// 'species': 'scary',
 /// 'jawsize': 5
 /// }
 /// ]
 /// };
 /// </param>
 public static void PutValid(this IPolymorphismOperations operations, FishInner complexBody)
 {
     operations.PutValidAsync(complexBody).GetAwaiter().GetResult();
 }
 /// <summary>
 /// Put complex types that are polymorphic and have recursive references
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please put a salmon that looks like this:
 /// {
 /// "fishtype": "salmon",
 /// "species": "king",
 /// "length": 1,
 /// "age": 1,
 /// "location": "alaska",
 /// "iswild": true,
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "length": 20,
 /// "age": 6,
 /// "siblings": [
 /// {
 /// "fishtype": "salmon",
 /// "species": "coho",
 /// "length": 2,
 /// "age": 2,
 /// "location": "atlantic",
 /// "iswild": true,
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "length": 20,
 /// "age": 6
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// }
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async System.Threading.Tasks.Task PutValidAsync(this IPolymorphicrecursiveOperations operations, FishInner complexBody, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     await operations.PutValidWithHttpMessagesAsync(complexBody, null, cancellationToken).ConfigureAwait(false);
 }
 /// <summary>
 /// Put complex types that are polymorphic and have recursive references
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please put a salmon that looks like this:
 /// {
 /// "fishtype": "salmon",
 /// "species": "king",
 /// "length": 1,
 /// "age": 1,
 /// "location": "alaska",
 /// "iswild": true,
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "length": 20,
 /// "age": 6,
 /// "siblings": [
 /// {
 /// "fishtype": "salmon",
 /// "species": "coho",
 /// "length": 2,
 /// "age": 2,
 /// "location": "atlantic",
 /// "iswild": true,
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "length": 20,
 /// "age": 6
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// }
 /// </param>
 public static void PutValid(this IPolymorphicrecursiveOperations operations, FishInner complexBody)
 {
     System.Threading.Tasks.Task.Factory.StartNew(s => ((IPolymorphicrecursiveOperations)s).PutValidAsync(complexBody), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
 }
 /// <summary>
 /// Put complex types that are polymorphic and have recursive references
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please put a salmon that looks like this:
 /// {
 /// "fishtype": "salmon",
 /// "species": "king",
 /// "length": 1,
 /// "age": 1,
 /// "location": "alaska",
 /// "iswild": true,
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "length": 20,
 /// "age": 6,
 /// "siblings": [
 /// {
 /// "fishtype": "salmon",
 /// "species": "coho",
 /// "length": 2,
 /// "age": 2,
 /// "location": "atlantic",
 /// "iswild": true,
 /// "siblings": [
 /// {
 /// "fishtype": "shark",
 /// "species": "predator",
 /// "length": 20,
 /// "age": 6
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// },
 /// {
 /// "fishtype": "sawshark",
 /// "species": "dangerous",
 /// "length": 10,
 /// "age": 105
 /// }
 /// ]
 /// }
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task PutValidAsync(this IPolymorphicrecursiveOperations operations, FishInner complexBody, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.PutValidWithHttpMessagesAsync(complexBody, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }
示例#7
0
 /// <summary>
 /// Put complex types that are polymorphic
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please put a salmon that looks like this:
 /// {
 /// 'fishtype':'Salmon',
 /// 'location':'alaska',
 /// 'iswild':true,
 /// 'species':'king',
 /// 'length':1.0,
 /// 'siblings':[
 /// {
 /// 'fishtype':'Shark',
 /// 'age':6,
 /// 'birthday': '2012-01-05T01:00:00Z',
 /// 'length':20.0,
 /// 'species':'predator',
 /// },
 /// {
 /// 'fishtype':'Sawshark',
 /// 'age':105,
 /// 'birthday': '1900-01-05T01:00:00Z',
 /// 'length':10.0,
 /// 'picture': new Buffer([255, 255, 255, 255,
 /// 254]).toString('base64'),
 /// 'species':'dangerous',
 /// },
 /// {
 /// 'fishtype': 'goblin',
 /// 'age': 1,
 /// 'birthday': '2015-08-08T00:00:00Z',
 /// 'length': 30.0,
 /// 'species': 'scary',
 /// 'jawsize': 5
 /// }
 /// ]
 /// };
 /// </param>
 public static void PutValid(this IPolymorphismOperations operations, FishInner complexBody)
 {
     System.Threading.Tasks.Task.Factory.StartNew(s => ((IPolymorphismOperations)s).PutValidAsync(complexBody), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
 }
示例#8
0
 /// <summary>
 /// Put complex types that are polymorphic
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='complexBody'>
 /// Please put a salmon that looks like this:
 /// {
 /// 'fishtype':'Salmon',
 /// 'location':'alaska',
 /// 'iswild':true,
 /// 'species':'king',
 /// 'length':1.0,
 /// 'siblings':[
 /// {
 /// 'fishtype':'Shark',
 /// 'age':6,
 /// 'birthday': '2012-01-05T01:00:00Z',
 /// 'length':20.0,
 /// 'species':'predator',
 /// },
 /// {
 /// 'fishtype':'Sawshark',
 /// 'age':105,
 /// 'birthday': '1900-01-05T01:00:00Z',
 /// 'length':10.0,
 /// 'picture': new Buffer([255, 255, 255, 255,
 /// 254]).toString('base64'),
 /// 'species':'dangerous',
 /// },
 /// {
 /// 'fishtype': 'goblin',
 /// 'age': 1,
 /// 'birthday': '2015-08-08T00:00:00Z',
 /// 'length': 30.0,
 /// 'species': 'scary',
 /// 'jawsize': 5
 /// }
 /// ]
 /// };
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async System.Threading.Tasks.Task PutValidAsync(this IPolymorphismOperations operations, FishInner complexBody, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     await operations.PutValidWithHttpMessagesAsync(complexBody, null, cancellationToken).ConfigureAwait(false);
 }