diff --git a/.gitignore b/.gitignore index 4f268ff..800d87b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .vscode +.vs obj/ bin/ diff --git a/src/generated/IKubernetes.cs b/src/generated/IKubernetes.cs index b9a828d..b6ca80c 100755 --- a/src/generated/IKubernetes.cs +++ b/src/generated/IKubernetes.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -31,6 +31,12 @@ namespace k8s /// JsonSerializerSettings DeserializationSettings { get; } + /// + /// Subscription credentials which uniquely identify client + /// subscription. + /// + ServiceClientCredentials Credentials { get; } + /// /// get available API versions @@ -13771,5 +13777,144 @@ namespace k8s /// Task> GetCodeWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets Resources + /// + /// + /// Returns a list of Resources + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListThirdPartyResource1WithHttpMessagesAsync(string fqdn, string resource, bool? watch = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Update a Resource + /// + /// + /// Update the specified third party resource of the type specified + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> UpdateThirdPartyResourceWithHttpMessagesAsync(string namespaceParameter, string fqdn, string resource, object body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Deletes a specific Resource + /// + /// + /// Deletes the specified Resource in the specified namespace + /// + /// + /// + /// + /// The duration in seconds before the object should be deleted. Value + /// must be non-negative integer. The value zero indicates delete + /// immediately. If this value is nil, the default grace period for the + /// specified type will be used. Defaults to a per object value if not + /// specified. zero means delete immediately. + /// + /// + /// Deprecated: please use the PropagationPolicy, this field will be + /// deprecated in 1.7. Should the dependent objects be orphaned. If + /// true/false, the "orphan" finalizer will be added to/removed from + /// the object's finalizers list. Either this field or + /// PropagationPolicy may be set, but not both. + /// + /// + /// Whether and how garbage collection will be performed. Either this + /// field or OrphanDependents may be set, but not both. The default + /// policy is decided by the existing finalizer set in the + /// metadata.finalizers and the resource-specific default policy. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeleteThirdPartyResource1WithHttpMessagesAsync(V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Gets a specific Resource + /// + /// + /// Returns a specific Resource in a namespace + /// + /// + /// The Resource's namespace + /// + /// + /// The Resource's name + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetThirdPartyResourceWithHttpMessagesAsync(string namespaceParameter, string name, string fqdn, string resource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Create a Resource + /// + /// + /// Creates a third party resource of the type specified + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateThirdPartyResource1WithHttpMessagesAsync(string namespaceParameter, string fqdn, string resource, object body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } } diff --git a/src/generated/Kubernetes.cs b/src/generated/Kubernetes.cs index 693dfd9..659ac83 100755 --- a/src/generated/Kubernetes.cs +++ b/src/generated/Kubernetes.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -32,13 +32,18 @@ namespace k8s /// public JsonSerializerSettings DeserializationSettings { get; private set; } + /// + /// Subscription credentials which uniquely identify client subscription. + /// + public ServiceClientCredentials Credentials { get; private set; } + /// /// Initializes a new instance of the Kubernetes class. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public Kubernetes(params DelegatingHandler[] handlers) : base(handlers) + protected Kubernetes(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -52,7 +57,7 @@ namespace k8s /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public Kubernetes(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected Kubernetes(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -69,7 +74,7 @@ namespace k8s /// /// Thrown when a required parameter is null /// - public Kubernetes(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + protected Kubernetes(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -93,7 +98,7 @@ namespace k8s /// /// Thrown when a required parameter is null /// - public Kubernetes(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected Kubernetes(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -102,6 +107,128 @@ namespace k8s BaseUri = baseUri; } + /// + /// Initializes a new instance of the Kubernetes class. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public Kubernetes(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the Kubernetes class. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public Kubernetes(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the Kubernetes class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public Kubernetes(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the Kubernetes class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public Kubernetes(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + /// /// An optional partial-method to perform custom initialization. /// @@ -194,6 +321,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -314,6 +447,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -495,6 +634,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -643,6 +788,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -824,6 +975,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -1005,6 +1162,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -1186,6 +1349,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -1367,6 +1536,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -1548,6 +1723,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -1700,6 +1881,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -1881,6 +2068,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -2046,6 +2239,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -2242,6 +2441,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -2403,6 +2608,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -2599,6 +2810,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -2774,6 +2991,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -2944,6 +3167,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -3148,6 +3377,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -3318,6 +3553,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -3514,6 +3755,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -3679,6 +3926,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -3875,6 +4128,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -4050,6 +4309,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -4224,6 +4489,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -4428,6 +4699,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -4598,6 +4875,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -4794,6 +5077,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -4959,6 +5248,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -5155,6 +5450,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -5330,6 +5631,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -5504,6 +5811,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -5708,6 +6021,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -5878,6 +6197,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -6074,6 +6399,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -6239,6 +6570,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -6435,6 +6772,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -6610,6 +6953,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -6784,6 +7133,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -6988,6 +7343,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -7158,6 +7519,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -7354,6 +7721,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -7515,6 +7888,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -7711,6 +8090,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -7886,6 +8271,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -8056,6 +8447,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -8260,6 +8657,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -8430,6 +8833,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -8587,6 +8996,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -8757,6 +9172,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -8927,6 +9348,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -9123,6 +9550,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -9288,6 +9721,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -9484,6 +9923,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -9659,6 +10104,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -9833,6 +10284,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -10037,6 +10494,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -10207,6 +10670,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -10402,6 +10871,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -10597,6 +11072,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -10771,6 +11252,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -10941,6 +11428,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -11144,6 +11637,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -11347,6 +11846,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -11569,6 +12074,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -11726,6 +12237,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -11883,6 +12400,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -12040,6 +12563,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -12197,6 +12726,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -12354,6 +12889,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -12511,6 +13052,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -12668,6 +13215,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -12838,6 +13391,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -13008,6 +13567,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -13178,6 +13743,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -13348,6 +13919,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -13518,6 +14095,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -13675,6 +14258,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -13849,6 +14438,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -14019,6 +14614,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -14215,6 +14816,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -14380,6 +14987,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -14576,6 +15189,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -14751,6 +15370,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -14925,6 +15550,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -15129,6 +15760,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -15299,6 +15936,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -15495,6 +16138,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -15660,6 +16309,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -15856,6 +16511,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -16031,6 +16692,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -16205,6 +16872,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -16409,6 +17082,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -16579,6 +17258,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -16736,6 +17421,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -16910,6 +17601,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -17080,6 +17777,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -17237,6 +17940,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -17411,6 +18120,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -17581,6 +18296,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -17777,6 +18498,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -17938,6 +18665,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -18134,6 +18867,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -18309,6 +19048,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -18479,6 +19224,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -18683,6 +19434,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -18853,6 +19610,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -19010,6 +19773,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -19180,6 +19949,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -19350,6 +20125,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -19546,6 +20327,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -19707,6 +20494,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -19903,6 +20696,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -20078,6 +20877,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -20248,6 +21053,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -20452,6 +21263,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -20622,6 +21439,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -20818,6 +21641,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -20979,6 +21808,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -21175,6 +22010,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -21350,6 +22191,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -21520,6 +22367,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -21724,6 +22577,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -21894,6 +22753,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -22090,6 +22955,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -22251,6 +23122,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -22426,6 +23303,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -22596,6 +23479,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -22753,6 +23642,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -22923,6 +23818,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -23084,6 +23985,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -23245,6 +24152,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -23406,6 +24319,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -23567,6 +24486,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -23728,6 +24653,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -23902,6 +24833,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -24076,6 +25013,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -24250,6 +25193,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -24424,6 +25373,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -24598,6 +25553,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -24755,6 +25716,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -24925,6 +25892,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -25095,6 +26068,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -25261,6 +26240,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -25422,6 +26407,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -25617,6 +26608,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -25778,6 +26775,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -25939,6 +26942,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -26087,6 +27096,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -26248,6 +27263,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -26409,6 +27430,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -26590,6 +27617,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -26746,6 +27779,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -26927,6 +27966,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -27093,6 +28138,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -27258,6 +28309,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -27453,6 +28510,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -27614,6 +28677,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -27762,6 +28831,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -27910,6 +28985,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28058,6 +29139,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28206,6 +29293,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28354,6 +29447,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28515,6 +29614,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28676,6 +29781,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28837,6 +29948,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -28998,6 +30115,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -29159,6 +30282,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -29307,6 +30436,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -29472,6 +30607,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -29633,6 +30774,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -29814,6 +30961,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -29995,6 +31148,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -30151,6 +31310,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -30332,6 +31497,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -30498,6 +31669,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -30663,6 +31840,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -30858,6 +32041,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31019,6 +32208,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31167,6 +32362,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31332,6 +32533,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31493,6 +32700,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31674,6 +32887,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31855,6 +33074,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -31999,6 +33224,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -32143,6 +33374,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -32287,6 +33524,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -32431,6 +33674,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -32575,6 +33824,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -32719,6 +33974,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -32872,6 +34133,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33025,6 +34292,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33178,6 +34451,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33331,6 +34610,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33484,6 +34769,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33637,6 +34928,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33781,6 +35078,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -33925,6 +35228,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34069,6 +35378,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34213,6 +35528,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34357,6 +35678,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34501,6 +35828,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34654,6 +35987,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34807,6 +36146,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -34960,6 +36305,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35113,6 +36464,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35266,6 +36623,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35419,6 +36782,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35554,6 +36923,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35689,6 +37064,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35824,6 +37205,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -35959,6 +37346,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36094,6 +37487,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36229,6 +37628,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36373,6 +37778,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36517,6 +37928,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36661,6 +38078,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36805,6 +38228,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -36949,6 +38378,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -37093,6 +38528,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -37274,6 +38715,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -37455,6 +38902,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -37636,6 +39089,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -37817,6 +39276,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -37998,6 +39463,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -38118,6 +39589,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -38238,6 +39715,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -38358,6 +39841,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -38539,6 +40028,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -38735,6 +40230,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -38900,6 +40401,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -39096,6 +40603,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -39271,6 +40784,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -39445,6 +40964,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -39649,6 +41174,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -39819,6 +41350,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -39993,6 +41530,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -40150,6 +41693,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -40324,6 +41873,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -40494,6 +42049,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -40651,6 +42212,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -40825,6 +42392,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -40995,6 +42568,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -41191,6 +42770,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -41356,6 +42941,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -41552,6 +43143,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -41727,6 +43324,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -41901,6 +43504,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -42105,6 +43714,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -42275,6 +43890,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -42432,6 +44053,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -42606,6 +44233,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -42776,6 +44409,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -42957,6 +44596,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43077,6 +44722,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43197,6 +44848,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43353,6 +45010,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43473,6 +45136,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43629,6 +45298,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43749,6 +45424,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -43869,6 +45550,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44034,6 +45721,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44190,6 +45883,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44346,6 +46045,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44466,6 +46171,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44631,6 +46342,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44787,6 +46504,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -44943,6 +46666,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -45063,6 +46792,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -45183,6 +46918,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -45364,6 +47105,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -45560,6 +47307,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -45725,6 +47478,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -45921,6 +47680,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -46096,6 +47861,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -46270,6 +48041,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -46474,6 +48251,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -46644,6 +48427,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -46801,6 +48590,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -46975,6 +48770,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -47145,6 +48946,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -47265,6 +49072,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -47446,6 +49259,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -47642,6 +49461,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -47807,6 +49632,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -48003,6 +49834,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -48178,6 +50015,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -48352,6 +50195,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -48556,6 +50405,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -48726,6 +50581,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -48883,6 +50744,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -49057,6 +50924,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -49227,6 +51100,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -49347,6 +51226,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -49467,6 +51352,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -49648,6 +51539,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -49844,6 +51741,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -50009,6 +51912,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -50205,6 +52114,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -50380,6 +52295,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -50554,6 +52475,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -50758,6 +52685,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -50928,6 +52861,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -51085,6 +53024,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -51259,6 +53204,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -51429,6 +53380,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -51549,6 +53506,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -51730,6 +53693,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -51926,6 +53895,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -52091,6 +54066,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -52287,6 +54268,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -52462,6 +54449,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -52636,6 +54629,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -52840,6 +54839,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -53010,6 +55015,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -53167,6 +55178,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -53341,6 +55358,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -53511,6 +55534,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -53707,6 +55736,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -53872,6 +55907,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -54068,6 +56109,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -54243,6 +56290,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -54417,6 +56470,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -54621,6 +56680,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -54791,6 +56856,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -54948,6 +57019,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -55122,6 +57199,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -55292,6 +57375,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -55473,6 +57562,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -55593,6 +57688,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -55713,6 +57814,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -55894,6 +58001,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -56050,6 +58163,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -56231,6 +58350,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -56397,6 +58522,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -56562,6 +58693,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -56757,6 +58894,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -56918,6 +59061,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -57083,6 +59232,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -57248,6 +59403,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -57368,6 +59529,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -57488,6 +59655,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -57669,6 +59842,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -57850,6 +60029,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -58031,6 +60216,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -58227,6 +60418,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -58392,6 +60589,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -58588,6 +60791,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -58763,6 +60972,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -58937,6 +61152,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -59141,6 +61362,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -59311,6 +61538,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -59468,6 +61701,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -59642,6 +61881,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -59812,6 +62057,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -60008,6 +62259,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -60173,6 +62430,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -60369,6 +62632,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -60544,6 +62813,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -60718,6 +62993,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -60922,6 +63203,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -61092,6 +63379,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -61266,6 +63559,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -61423,6 +63722,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -61597,6 +63902,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -61767,6 +64078,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -61924,6 +64241,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -62098,6 +64421,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -62268,6 +64597,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -62464,6 +64799,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -62629,6 +64970,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -62825,6 +65172,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -63000,6 +65353,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -63174,6 +65533,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -63378,6 +65743,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -63548,6 +65919,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -63705,6 +66082,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -63879,6 +66262,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -64049,6 +66438,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -64245,6 +66640,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -64410,6 +66811,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -64606,6 +67013,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -64781,6 +67194,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -64955,6 +67374,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -65159,6 +67584,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -65329,6 +67760,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -65525,6 +67962,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -65690,6 +68133,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -65886,6 +68335,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -66061,6 +68516,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -66235,6 +68696,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -66439,6 +68906,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -66609,6 +69082,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -66766,6 +69245,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -66940,6 +69425,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -67110,6 +69601,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -67267,6 +69764,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -67441,6 +69944,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -67611,6 +70120,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -67768,6 +70283,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -67942,6 +70463,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -68112,6 +70639,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -68293,6 +70826,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -68474,6 +71013,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -68630,6 +71175,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -68811,6 +71362,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -68977,6 +71534,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -69142,6 +71705,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -69337,6 +71906,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -69498,6 +72073,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -69679,6 +72260,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -69860,6 +72447,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70012,6 +72605,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70193,6 +72792,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70359,6 +72964,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70520,6 +73131,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70715,6 +73332,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70876,6 +73499,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -70996,6 +73625,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -71116,6 +73751,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -71312,6 +73953,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -71477,6 +74124,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -71673,6 +74326,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -71848,6 +74507,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -72022,6 +74687,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -72226,6 +74897,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -72396,6 +75073,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -72553,6 +75236,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -72727,6 +75416,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -72897,6 +75592,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73078,6 +75779,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73198,6 +75905,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73318,6 +76031,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73499,6 +76218,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73655,6 +76380,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73836,6 +76567,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -73984,6 +76721,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -74149,6 +76892,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -74344,6 +77093,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -74505,6 +77260,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -74686,6 +77447,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -74842,6 +77609,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -75023,6 +77796,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -75171,6 +77950,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -75336,6 +78121,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -75531,6 +78322,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -75692,6 +78489,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -75888,6 +78691,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -76053,6 +78862,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -76249,6 +79064,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -76406,6 +79227,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -76580,6 +79407,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -76784,6 +79617,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -76954,6 +79793,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -77150,6 +79995,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -77315,6 +80166,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -77511,6 +80368,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -77668,6 +80531,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -77842,6 +80711,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -78046,6 +80921,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -78216,6 +81097,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -78397,6 +81284,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -78578,6 +81471,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -78698,6 +81597,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -78879,6 +81784,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -79035,6 +81946,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -79216,6 +82133,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -79364,6 +82287,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -79529,6 +82458,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -79724,6 +82659,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -79885,6 +82826,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -80066,6 +83013,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -80222,6 +83175,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -80403,6 +83362,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -80551,6 +83516,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -80716,6 +83687,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -80911,6 +83888,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -81072,6 +84055,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -81268,6 +84257,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -81433,6 +84428,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -81629,6 +84630,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -81786,6 +84793,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -81960,6 +84973,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -82164,6 +85183,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -82334,6 +85359,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -82530,6 +85561,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -82695,6 +85732,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -82891,6 +85934,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -83048,6 +86097,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -83222,6 +86277,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -83426,6 +86487,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -83596,6 +86663,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -83777,6 +86850,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -83958,6 +87037,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -84078,6 +87163,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -84198,6 +87289,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -84394,6 +87491,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -84555,6 +87658,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -84751,6 +87860,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -84926,6 +88041,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -85096,6 +88217,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -85300,6 +88427,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -85470,6 +88603,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -85651,6 +88790,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -85771,6 +88916,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -85891,6 +89042,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -86072,6 +89229,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -86228,6 +89391,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -86409,6 +89578,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -86575,6 +89750,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -86740,6 +89921,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -86935,6 +90122,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -87096,6 +90289,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -87216,6 +90415,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -87397,6 +90602,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -87553,6 +90764,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -87734,6 +90951,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -87900,6 +91123,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88065,6 +91294,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88260,6 +91495,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("*/*"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88421,6 +91662,12 @@ namespace k8s _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json-patch+json; charset=utf-8"); } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88535,6 +91782,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88646,6 +91899,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88748,6 +92007,12 @@ namespace k8s // Serialize Request string _requestContent = null; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } // Send Request if (_shouldTrace) { @@ -88813,5 +92078,882 @@ namespace k8s return _result; } + /// + /// Gets Resources + /// + /// + /// Returns a list of Resources + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListThirdPartyResource1WithHttpMessagesAsync(string fqdn, string resource, bool? watch = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (fqdn == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "fqdn"); + } + if (resource == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resource"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("watch", watch); + tracingParameters.Add("fqdn", fqdn); + tracingParameters.Add("resource", resource); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListThirdPartyResource1", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/{fqdn}/v1/{resource}").ToString(); + _url = _url.Replace("{fqdn}", System.Uri.EscapeDataString(fqdn)); + _url = _url.Replace("{resource}", System.Uri.EscapeDataString(resource)); + List _queryParameters = new List(); + if (watch != null) + { + _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + 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; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update a Resource + /// + /// + /// Update the specified third party resource of the type specified + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateThirdPartyResourceWithHttpMessagesAsync(string namespaceParameter, string fqdn, string resource, object body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (namespaceParameter == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceParameter"); + } + if (fqdn == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "fqdn"); + } + if (resource == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resource"); + } + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("namespaceParameter", namespaceParameter); + tracingParameters.Add("fqdn", fqdn); + tracingParameters.Add("resource", resource); + tracingParameters.Add("body", body); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "UpdateThirdPartyResource", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name}").ToString(); + _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); + _url = _url.Replace("{fqdn}", System.Uri.EscapeDataString(fqdn)); + _url = _url.Replace("{resource}", System.Uri.EscapeDataString(resource)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + 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(body != null) + { + _requestContent = SafeJsonConvert.SerializeObject(body, SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a specific Resource + /// + /// + /// Deletes the specified Resource in the specified namespace + /// + /// + /// + /// + /// The duration in seconds before the object should be deleted. Value must be + /// non-negative integer. The value zero indicates delete immediately. If this + /// value is nil, the default grace period for the specified type will be used. + /// Defaults to a per object value if not specified. zero means delete + /// immediately. + /// + /// + /// Deprecated: please use the PropagationPolicy, this field will be deprecated + /// in 1.7. Should the dependent objects be orphaned. If true/false, the + /// "orphan" finalizer will be added to/removed from the object's finalizers + /// list. Either this field or PropagationPolicy may be set, but not both. + /// + /// + /// Whether and how garbage collection will be performed. Either this field or + /// OrphanDependents may be set, but not both. The default policy is decided by + /// the existing finalizer set in the metadata.finalizers and the + /// resource-specific default policy. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DeleteThirdPartyResource1WithHttpMessagesAsync(V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("gracePeriodSeconds", gracePeriodSeconds); + tracingParameters.Add("orphanDependents", orphanDependents); + tracingParameters.Add("propagationPolicy", propagationPolicy); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteThirdPartyResource1", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name}").ToString(); + List _queryParameters = new List(); + if (gracePeriodSeconds != null) + { + _queryParameters.Add(string.Format("gracePeriodSeconds={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(gracePeriodSeconds, SerializationSettings).Trim('"')))); + } + if (orphanDependents != null) + { + _queryParameters.Add(string.Format("orphanDependents={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(orphanDependents, SerializationSettings).Trim('"')))); + } + if (propagationPolicy != null) + { + _queryParameters.Add(string.Format("propagationPolicy={0}", System.Uri.EscapeDataString(propagationPolicy))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + 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(body != null) + { + _requestContent = SafeJsonConvert.SerializeObject(body, SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a specific Resource + /// + /// + /// Returns a specific Resource in a namespace + /// + /// + /// The Resource's namespace + /// + /// + /// The Resource's name + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetThirdPartyResourceWithHttpMessagesAsync(string namespaceParameter, string name, string fqdn, string resource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (namespaceParameter == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceParameter"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (fqdn == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "fqdn"); + } + if (resource == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resource"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("namespaceParameter", namespaceParameter); + tracingParameters.Add("name", name); + tracingParameters.Add("fqdn", fqdn); + tracingParameters.Add("resource", resource); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetThirdPartyResource", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name}").ToString(); + _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{fqdn}", System.Uri.EscapeDataString(fqdn)); + _url = _url.Replace("{resource}", System.Uri.EscapeDataString(resource)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + 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; + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create a Resource + /// + /// + /// Creates a third party resource of the type specified + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateThirdPartyResource1WithHttpMessagesAsync(string namespaceParameter, string fqdn, string resource, object body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (namespaceParameter == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceParameter"); + } + if (fqdn == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "fqdn"); + } + if (resource == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resource"); + } + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("namespaceParameter", namespaceParameter); + tracingParameters.Add("fqdn", fqdn); + tracingParameters.Add("resource", resource); + tracingParameters.Add("body", body); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateThirdPartyResource1", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/{fqdn}/v1/namespaces/{namespace}/{resource}").ToString(); + _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); + _url = _url.Replace("{fqdn}", System.Uri.EscapeDataString(fqdn)); + _url = _url.Replace("{resource}", System.Uri.EscapeDataString(resource)); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + 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(body != null) + { + _requestContent = SafeJsonConvert.SerializeObject(body, SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/generated/KubernetesExtensions.cs b/src/generated/KubernetesExtensions.cs index b20ddbc..8cfb329 100755 --- a/src/generated/KubernetesExtensions.cs +++ b/src/generated/KubernetesExtensions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. @@ -30077,5 +30077,309 @@ namespace k8s } } + /// + /// Gets Resources + /// + /// + /// Returns a list of Resources + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + public static object ListThirdPartyResource1(this IKubernetes operations, string fqdn, string resource, bool? watch = default(bool?)) + { + return operations.ListThirdPartyResource1Async(fqdn, resource, watch).GetAwaiter().GetResult(); + } + + /// + /// Gets Resources + /// + /// + /// Returns a list of Resources + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// The cancellation token. + /// + public static async Task ListThirdPartyResource1Async(this IKubernetes operations, string fqdn, string resource, bool? watch = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListThirdPartyResource1WithHttpMessagesAsync(fqdn, resource, watch, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update a Resource + /// + /// + /// Update the specified third party resource of the type specified + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + public static object UpdateThirdPartyResource(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body) + { + return operations.UpdateThirdPartyResourceAsync(namespaceParameter, fqdn, resource, body).GetAwaiter().GetResult(); + } + + /// + /// Update a Resource + /// + /// + /// Update the specified third party resource of the type specified + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateThirdPartyResourceAsync(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateThirdPartyResourceWithHttpMessagesAsync(namespaceParameter, fqdn, resource, body, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a specific Resource + /// + /// + /// Deletes the specified Resource in the specified namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// The duration in seconds before the object should be deleted. Value must be + /// non-negative integer. The value zero indicates delete immediately. If this + /// value is nil, the default grace period for the specified type will be used. + /// Defaults to a per object value if not specified. zero means delete + /// immediately. + /// + /// + /// Deprecated: please use the PropagationPolicy, this field will be deprecated + /// in 1.7. Should the dependent objects be orphaned. If true/false, the + /// "orphan" finalizer will be added to/removed from the object's finalizers + /// list. Either this field or PropagationPolicy may be set, but not both. + /// + /// + /// Whether and how garbage collection will be performed. Either this field or + /// OrphanDependents may be set, but not both. The default policy is decided by + /// the existing finalizer set in the metadata.finalizers and the + /// resource-specific default policy. + /// + public static object DeleteThirdPartyResource1(this IKubernetes operations, V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string)) + { + return operations.DeleteThirdPartyResource1Async(body, gracePeriodSeconds, orphanDependents, propagationPolicy).GetAwaiter().GetResult(); + } + + /// + /// Deletes a specific Resource + /// + /// + /// Deletes the specified Resource in the specified namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// The duration in seconds before the object should be deleted. Value must be + /// non-negative integer. The value zero indicates delete immediately. If this + /// value is nil, the default grace period for the specified type will be used. + /// Defaults to a per object value if not specified. zero means delete + /// immediately. + /// + /// + /// Deprecated: please use the PropagationPolicy, this field will be deprecated + /// in 1.7. Should the dependent objects be orphaned. If true/false, the + /// "orphan" finalizer will be added to/removed from the object's finalizers + /// list. Either this field or PropagationPolicy may be set, but not both. + /// + /// + /// Whether and how garbage collection will be performed. Either this field or + /// OrphanDependents may be set, but not both. The default policy is decided by + /// the existing finalizer set in the metadata.finalizers and the + /// resource-specific default policy. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteThirdPartyResource1Async(this IKubernetes operations, V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteThirdPartyResource1WithHttpMessagesAsync(body, gracePeriodSeconds, orphanDependents, propagationPolicy, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a specific Resource + /// + /// + /// Returns a specific Resource in a namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Resource's namespace + /// + /// + /// The Resource's name + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + public static object GetThirdPartyResource(this IKubernetes operations, string namespaceParameter, string name, string fqdn, string resource) + { + return operations.GetThirdPartyResourceAsync(namespaceParameter, name, fqdn, resource).GetAwaiter().GetResult(); + } + + /// + /// Gets a specific Resource + /// + /// + /// Returns a specific Resource in a namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Resource's namespace + /// + /// + /// The Resource's name + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The cancellation token. + /// + public static async Task GetThirdPartyResourceAsync(this IKubernetes operations, string namespaceParameter, string name, string fqdn, string resource, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetThirdPartyResourceWithHttpMessagesAsync(namespaceParameter, name, fqdn, resource, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create a Resource + /// + /// + /// Creates a third party resource of the type specified + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + public static object CreateThirdPartyResource1(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body) + { + return operations.CreateThirdPartyResource1Async(namespaceParameter, fqdn, resource, body).GetAwaiter().GetResult(); + } + + /// + /// Create a Resource + /// + /// + /// Creates a third party resource of the type specified + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Resource's namespace + /// + /// + /// The Third party Resource fqdn + /// + /// + /// The Resource type + /// + /// + /// The JSON schema of the Resource to create. + /// + /// + /// The cancellation token. + /// + public static async Task CreateThirdPartyResource1Async(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateThirdPartyResource1WithHttpMessagesAsync(namespaceParameter, fqdn, resource, body, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/generated/Models/Appsv1beta1Deployment.cs b/src/generated/Models/Appsv1beta1Deployment.cs index 471617f..6569181 100755 --- a/src/generated/Models/Appsv1beta1Deployment.cs +++ b/src/generated/Models/Appsv1beta1Deployment.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1DeploymentCondition.cs b/src/generated/Models/Appsv1beta1DeploymentCondition.cs index 60f874c..547b08d 100755 --- a/src/generated/Models/Appsv1beta1DeploymentCondition.cs +++ b/src/generated/Models/Appsv1beta1DeploymentCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1DeploymentList.cs b/src/generated/Models/Appsv1beta1DeploymentList.cs index b07d904..e2a2e17 100755 --- a/src/generated/Models/Appsv1beta1DeploymentList.cs +++ b/src/generated/Models/Appsv1beta1DeploymentList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1DeploymentRollback.cs b/src/generated/Models/Appsv1beta1DeploymentRollback.cs index 664bb46..f740387 100755 --- a/src/generated/Models/Appsv1beta1DeploymentRollback.cs +++ b/src/generated/Models/Appsv1beta1DeploymentRollback.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1DeploymentSpec.cs b/src/generated/Models/Appsv1beta1DeploymentSpec.cs index 0a6bb7b..2353fc8 100755 --- a/src/generated/Models/Appsv1beta1DeploymentSpec.cs +++ b/src/generated/Models/Appsv1beta1DeploymentSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1DeploymentStatus.cs b/src/generated/Models/Appsv1beta1DeploymentStatus.cs index 1686982..171ec28 100755 --- a/src/generated/Models/Appsv1beta1DeploymentStatus.cs +++ b/src/generated/Models/Appsv1beta1DeploymentStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1DeploymentStrategy.cs b/src/generated/Models/Appsv1beta1DeploymentStrategy.cs index fac9a71..8ef959e 100755 --- a/src/generated/Models/Appsv1beta1DeploymentStrategy.cs +++ b/src/generated/Models/Appsv1beta1DeploymentStrategy.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1RollbackConfig.cs b/src/generated/Models/Appsv1beta1RollbackConfig.cs index 5011da2..58b87b4 100755 --- a/src/generated/Models/Appsv1beta1RollbackConfig.cs +++ b/src/generated/Models/Appsv1beta1RollbackConfig.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1RollingUpdateDeployment.cs b/src/generated/Models/Appsv1beta1RollingUpdateDeployment.cs index 68dc733..42530ee 100755 --- a/src/generated/Models/Appsv1beta1RollingUpdateDeployment.cs +++ b/src/generated/Models/Appsv1beta1RollingUpdateDeployment.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1Scale.cs b/src/generated/Models/Appsv1beta1Scale.cs index 49b8e84..18db661 100755 --- a/src/generated/Models/Appsv1beta1Scale.cs +++ b/src/generated/Models/Appsv1beta1Scale.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1ScaleSpec.cs b/src/generated/Models/Appsv1beta1ScaleSpec.cs index c27ea6f..d933799 100755 --- a/src/generated/Models/Appsv1beta1ScaleSpec.cs +++ b/src/generated/Models/Appsv1beta1ScaleSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Appsv1beta1ScaleStatus.cs b/src/generated/Models/Appsv1beta1ScaleStatus.cs index 933d3f6..94ad44e 100755 --- a/src/generated/Models/Appsv1beta1ScaleStatus.cs +++ b/src/generated/Models/Appsv1beta1ScaleStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1Deployment.cs b/src/generated/Models/Extensionsv1beta1Deployment.cs index c939410..ed92e1b 100755 --- a/src/generated/Models/Extensionsv1beta1Deployment.cs +++ b/src/generated/Models/Extensionsv1beta1Deployment.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1DeploymentCondition.cs b/src/generated/Models/Extensionsv1beta1DeploymentCondition.cs index f5b3f40..3f4d06c 100755 --- a/src/generated/Models/Extensionsv1beta1DeploymentCondition.cs +++ b/src/generated/Models/Extensionsv1beta1DeploymentCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1DeploymentList.cs b/src/generated/Models/Extensionsv1beta1DeploymentList.cs index 7acf0b6..0aee12a 100755 --- a/src/generated/Models/Extensionsv1beta1DeploymentList.cs +++ b/src/generated/Models/Extensionsv1beta1DeploymentList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1DeploymentRollback.cs b/src/generated/Models/Extensionsv1beta1DeploymentRollback.cs index 6ab15a9..f2fb809 100755 --- a/src/generated/Models/Extensionsv1beta1DeploymentRollback.cs +++ b/src/generated/Models/Extensionsv1beta1DeploymentRollback.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1DeploymentSpec.cs b/src/generated/Models/Extensionsv1beta1DeploymentSpec.cs index 71d2c6f..3dd9d27 100755 --- a/src/generated/Models/Extensionsv1beta1DeploymentSpec.cs +++ b/src/generated/Models/Extensionsv1beta1DeploymentSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1DeploymentStatus.cs b/src/generated/Models/Extensionsv1beta1DeploymentStatus.cs index 91625b0..c226385 100755 --- a/src/generated/Models/Extensionsv1beta1DeploymentStatus.cs +++ b/src/generated/Models/Extensionsv1beta1DeploymentStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1DeploymentStrategy.cs b/src/generated/Models/Extensionsv1beta1DeploymentStrategy.cs index 4931819..8f637b4 100755 --- a/src/generated/Models/Extensionsv1beta1DeploymentStrategy.cs +++ b/src/generated/Models/Extensionsv1beta1DeploymentStrategy.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1RollbackConfig.cs b/src/generated/Models/Extensionsv1beta1RollbackConfig.cs index ce452ef..291fb23 100755 --- a/src/generated/Models/Extensionsv1beta1RollbackConfig.cs +++ b/src/generated/Models/Extensionsv1beta1RollbackConfig.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1RollingUpdateDeployment.cs b/src/generated/Models/Extensionsv1beta1RollingUpdateDeployment.cs index 27a3a61..8ddf6f6 100755 --- a/src/generated/Models/Extensionsv1beta1RollingUpdateDeployment.cs +++ b/src/generated/Models/Extensionsv1beta1RollingUpdateDeployment.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1Scale.cs b/src/generated/Models/Extensionsv1beta1Scale.cs index a1a1d9c..5196e82 100755 --- a/src/generated/Models/Extensionsv1beta1Scale.cs +++ b/src/generated/Models/Extensionsv1beta1Scale.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1ScaleSpec.cs b/src/generated/Models/Extensionsv1beta1ScaleSpec.cs index 83eac9b..c667e6e 100755 --- a/src/generated/Models/Extensionsv1beta1ScaleSpec.cs +++ b/src/generated/Models/Extensionsv1beta1ScaleSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/Extensionsv1beta1ScaleStatus.cs b/src/generated/Models/Extensionsv1beta1ScaleStatus.cs index dd811f9..0e7df71 100755 --- a/src/generated/Models/Extensionsv1beta1ScaleStatus.cs +++ b/src/generated/Models/Extensionsv1beta1ScaleStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/RuntimeRawExtension.cs b/src/generated/Models/RuntimeRawExtension.cs index 5fbe739..9cb4c60 100755 --- a/src/generated/Models/RuntimeRawExtension.cs +++ b/src/generated/Models/RuntimeRawExtension.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1APIGroup.cs b/src/generated/Models/V1APIGroup.cs index b7542b7..322ce1d 100755 --- a/src/generated/Models/V1APIGroup.cs +++ b/src/generated/Models/V1APIGroup.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1APIGroupList.cs b/src/generated/Models/V1APIGroupList.cs index 51ac035..369e374 100755 --- a/src/generated/Models/V1APIGroupList.cs +++ b/src/generated/Models/V1APIGroupList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1APIResource.cs b/src/generated/Models/V1APIResource.cs index 0eaf46a..d6812c2 100755 --- a/src/generated/Models/V1APIResource.cs +++ b/src/generated/Models/V1APIResource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1APIResourceList.cs b/src/generated/Models/V1APIResourceList.cs index a0db3ea..dec1dcc 100755 --- a/src/generated/Models/V1APIResourceList.cs +++ b/src/generated/Models/V1APIResourceList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1APIVersions.cs b/src/generated/Models/V1APIVersions.cs index cc74d79..068129e 100755 --- a/src/generated/Models/V1APIVersions.cs +++ b/src/generated/Models/V1APIVersions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1AWSElasticBlockStoreVolumeSource.cs b/src/generated/Models/V1AWSElasticBlockStoreVolumeSource.cs index d3b4bce..9abf5e0 100755 --- a/src/generated/Models/V1AWSElasticBlockStoreVolumeSource.cs +++ b/src/generated/Models/V1AWSElasticBlockStoreVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Affinity.cs b/src/generated/Models/V1Affinity.cs index c25816d..04b1d44 100755 --- a/src/generated/Models/V1Affinity.cs +++ b/src/generated/Models/V1Affinity.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1AttachedVolume.cs b/src/generated/Models/V1AttachedVolume.cs index 54da810..831e7ef 100755 --- a/src/generated/Models/V1AttachedVolume.cs +++ b/src/generated/Models/V1AttachedVolume.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1AzureDiskVolumeSource.cs b/src/generated/Models/V1AzureDiskVolumeSource.cs index 413c800..aa1fa2f 100755 --- a/src/generated/Models/V1AzureDiskVolumeSource.cs +++ b/src/generated/Models/V1AzureDiskVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1AzureFileVolumeSource.cs b/src/generated/Models/V1AzureFileVolumeSource.cs index cfee45d..eb56853 100755 --- a/src/generated/Models/V1AzureFileVolumeSource.cs +++ b/src/generated/Models/V1AzureFileVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Binding.cs b/src/generated/Models/V1Binding.cs index cdc9ae7..30304f3 100755 --- a/src/generated/Models/V1Binding.cs +++ b/src/generated/Models/V1Binding.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Capabilities.cs b/src/generated/Models/V1Capabilities.cs index 32e8ef9..720b92b 100755 --- a/src/generated/Models/V1Capabilities.cs +++ b/src/generated/Models/V1Capabilities.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1CephFSVolumeSource.cs b/src/generated/Models/V1CephFSVolumeSource.cs index 0a086f1..022b544 100755 --- a/src/generated/Models/V1CephFSVolumeSource.cs +++ b/src/generated/Models/V1CephFSVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1CinderVolumeSource.cs b/src/generated/Models/V1CinderVolumeSource.cs index 32fbfcb..ef8d8e2 100755 --- a/src/generated/Models/V1CinderVolumeSource.cs +++ b/src/generated/Models/V1CinderVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ComponentCondition.cs b/src/generated/Models/V1ComponentCondition.cs index 49a7ebe..954d663 100755 --- a/src/generated/Models/V1ComponentCondition.cs +++ b/src/generated/Models/V1ComponentCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ComponentStatus.cs b/src/generated/Models/V1ComponentStatus.cs index 2c3143b..5af0da8 100755 --- a/src/generated/Models/V1ComponentStatus.cs +++ b/src/generated/Models/V1ComponentStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ComponentStatusList.cs b/src/generated/Models/V1ComponentStatusList.cs index 440bf77..fecf64f 100755 --- a/src/generated/Models/V1ComponentStatusList.cs +++ b/src/generated/Models/V1ComponentStatusList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ConfigMap.cs b/src/generated/Models/V1ConfigMap.cs index 6eb5544..3ace1b0 100755 --- a/src/generated/Models/V1ConfigMap.cs +++ b/src/generated/Models/V1ConfigMap.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ConfigMapEnvSource.cs b/src/generated/Models/V1ConfigMapEnvSource.cs index 99d158d..7a56031 100755 --- a/src/generated/Models/V1ConfigMapEnvSource.cs +++ b/src/generated/Models/V1ConfigMapEnvSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ConfigMapKeySelector.cs b/src/generated/Models/V1ConfigMapKeySelector.cs index f45e136..edad552 100755 --- a/src/generated/Models/V1ConfigMapKeySelector.cs +++ b/src/generated/Models/V1ConfigMapKeySelector.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ConfigMapList.cs b/src/generated/Models/V1ConfigMapList.cs index 2cc0a4e..dc91754 100755 --- a/src/generated/Models/V1ConfigMapList.cs +++ b/src/generated/Models/V1ConfigMapList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ConfigMapProjection.cs b/src/generated/Models/V1ConfigMapProjection.cs index 949fc24..6ef15c6 100755 --- a/src/generated/Models/V1ConfigMapProjection.cs +++ b/src/generated/Models/V1ConfigMapProjection.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ConfigMapVolumeSource.cs b/src/generated/Models/V1ConfigMapVolumeSource.cs index 92d0505..2d78327 100755 --- a/src/generated/Models/V1ConfigMapVolumeSource.cs +++ b/src/generated/Models/V1ConfigMapVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Container.cs b/src/generated/Models/V1Container.cs index 873b82b..76464cc 100755 --- a/src/generated/Models/V1Container.cs +++ b/src/generated/Models/V1Container.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerImage.cs b/src/generated/Models/V1ContainerImage.cs index b1852f7..963e963 100755 --- a/src/generated/Models/V1ContainerImage.cs +++ b/src/generated/Models/V1ContainerImage.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerPort.cs b/src/generated/Models/V1ContainerPort.cs index 0948433..fdeb66a 100755 --- a/src/generated/Models/V1ContainerPort.cs +++ b/src/generated/Models/V1ContainerPort.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerState.cs b/src/generated/Models/V1ContainerState.cs index 2af67c0..9c5bcfa 100755 --- a/src/generated/Models/V1ContainerState.cs +++ b/src/generated/Models/V1ContainerState.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerStateRunning.cs b/src/generated/Models/V1ContainerStateRunning.cs index f9f809b..47f66ff 100755 --- a/src/generated/Models/V1ContainerStateRunning.cs +++ b/src/generated/Models/V1ContainerStateRunning.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerStateTerminated.cs b/src/generated/Models/V1ContainerStateTerminated.cs index 2fd4b4d..2a737c5 100755 --- a/src/generated/Models/V1ContainerStateTerminated.cs +++ b/src/generated/Models/V1ContainerStateTerminated.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerStateWaiting.cs b/src/generated/Models/V1ContainerStateWaiting.cs index bc1f38f..f9f2b6a 100755 --- a/src/generated/Models/V1ContainerStateWaiting.cs +++ b/src/generated/Models/V1ContainerStateWaiting.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ContainerStatus.cs b/src/generated/Models/V1ContainerStatus.cs index f7c78cf..e3917ea 100755 --- a/src/generated/Models/V1ContainerStatus.cs +++ b/src/generated/Models/V1ContainerStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1CrossVersionObjectReference.cs b/src/generated/Models/V1CrossVersionObjectReference.cs index 3018deb..46838bf 100755 --- a/src/generated/Models/V1CrossVersionObjectReference.cs +++ b/src/generated/Models/V1CrossVersionObjectReference.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1DaemonEndpoint.cs b/src/generated/Models/V1DaemonEndpoint.cs index 05eaf5c..df0ab4f 100755 --- a/src/generated/Models/V1DaemonEndpoint.cs +++ b/src/generated/Models/V1DaemonEndpoint.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1DeleteOptions.cs b/src/generated/Models/V1DeleteOptions.cs index 53f79a6..9dc75af 100755 --- a/src/generated/Models/V1DeleteOptions.cs +++ b/src/generated/Models/V1DeleteOptions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1DownwardAPIProjection.cs b/src/generated/Models/V1DownwardAPIProjection.cs index 8d10155..5c2db2a 100755 --- a/src/generated/Models/V1DownwardAPIProjection.cs +++ b/src/generated/Models/V1DownwardAPIProjection.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1DownwardAPIVolumeFile.cs b/src/generated/Models/V1DownwardAPIVolumeFile.cs index bc34cc1..99ff37d 100755 --- a/src/generated/Models/V1DownwardAPIVolumeFile.cs +++ b/src/generated/Models/V1DownwardAPIVolumeFile.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1DownwardAPIVolumeSource.cs b/src/generated/Models/V1DownwardAPIVolumeSource.cs index 4a092b8..8b03b0f 100755 --- a/src/generated/Models/V1DownwardAPIVolumeSource.cs +++ b/src/generated/Models/V1DownwardAPIVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EmptyDirVolumeSource.cs b/src/generated/Models/V1EmptyDirVolumeSource.cs index 1d63477..ff0b305 100755 --- a/src/generated/Models/V1EmptyDirVolumeSource.cs +++ b/src/generated/Models/V1EmptyDirVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EndpointAddress.cs b/src/generated/Models/V1EndpointAddress.cs index db35904..1febe25 100755 --- a/src/generated/Models/V1EndpointAddress.cs +++ b/src/generated/Models/V1EndpointAddress.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EndpointPort.cs b/src/generated/Models/V1EndpointPort.cs index 6f280ed..7143f06 100755 --- a/src/generated/Models/V1EndpointPort.cs +++ b/src/generated/Models/V1EndpointPort.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EndpointSubset.cs b/src/generated/Models/V1EndpointSubset.cs index 7fcd1e1..0429fb9 100755 --- a/src/generated/Models/V1EndpointSubset.cs +++ b/src/generated/Models/V1EndpointSubset.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Endpoints.cs b/src/generated/Models/V1Endpoints.cs index f53db16..c78b159 100755 --- a/src/generated/Models/V1Endpoints.cs +++ b/src/generated/Models/V1Endpoints.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EndpointsList.cs b/src/generated/Models/V1EndpointsList.cs index 3af51b7..0e28764 100755 --- a/src/generated/Models/V1EndpointsList.cs +++ b/src/generated/Models/V1EndpointsList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EnvFromSource.cs b/src/generated/Models/V1EnvFromSource.cs index 0138a07..cb51a57 100755 --- a/src/generated/Models/V1EnvFromSource.cs +++ b/src/generated/Models/V1EnvFromSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EnvVar.cs b/src/generated/Models/V1EnvVar.cs index 42f76e8..904be82 100755 --- a/src/generated/Models/V1EnvVar.cs +++ b/src/generated/Models/V1EnvVar.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EnvVarSource.cs b/src/generated/Models/V1EnvVarSource.cs index 2903c96..d1f6728 100755 --- a/src/generated/Models/V1EnvVarSource.cs +++ b/src/generated/Models/V1EnvVarSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Event.cs b/src/generated/Models/V1Event.cs index 464f3d0..57f81af 100755 --- a/src/generated/Models/V1Event.cs +++ b/src/generated/Models/V1Event.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EventList.cs b/src/generated/Models/V1EventList.cs index 43da435..0315c27 100755 --- a/src/generated/Models/V1EventList.cs +++ b/src/generated/Models/V1EventList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1EventSource.cs b/src/generated/Models/V1EventSource.cs index 1013f91..9871ca1 100755 --- a/src/generated/Models/V1EventSource.cs +++ b/src/generated/Models/V1EventSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ExecAction.cs b/src/generated/Models/V1ExecAction.cs index b9f4f24..e986fb2 100755 --- a/src/generated/Models/V1ExecAction.cs +++ b/src/generated/Models/V1ExecAction.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1FCVolumeSource.cs b/src/generated/Models/V1FCVolumeSource.cs index fba9d6e..5789e0c 100755 --- a/src/generated/Models/V1FCVolumeSource.cs +++ b/src/generated/Models/V1FCVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1FlexVolumeSource.cs b/src/generated/Models/V1FlexVolumeSource.cs index f06a10a..2ffd2e6 100755 --- a/src/generated/Models/V1FlexVolumeSource.cs +++ b/src/generated/Models/V1FlexVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1FlockerVolumeSource.cs b/src/generated/Models/V1FlockerVolumeSource.cs index fb04e81..22e555d 100755 --- a/src/generated/Models/V1FlockerVolumeSource.cs +++ b/src/generated/Models/V1FlockerVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1GCEPersistentDiskVolumeSource.cs b/src/generated/Models/V1GCEPersistentDiskVolumeSource.cs index bbbd90e..b9eb3f0 100755 --- a/src/generated/Models/V1GCEPersistentDiskVolumeSource.cs +++ b/src/generated/Models/V1GCEPersistentDiskVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1GitRepoVolumeSource.cs b/src/generated/Models/V1GitRepoVolumeSource.cs index c5bcb81..619f66b 100755 --- a/src/generated/Models/V1GitRepoVolumeSource.cs +++ b/src/generated/Models/V1GitRepoVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1GlusterfsVolumeSource.cs b/src/generated/Models/V1GlusterfsVolumeSource.cs index 1dca2bc..ba876a0 100755 --- a/src/generated/Models/V1GlusterfsVolumeSource.cs +++ b/src/generated/Models/V1GlusterfsVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1GroupVersionForDiscovery.cs b/src/generated/Models/V1GroupVersionForDiscovery.cs index 7168908..ebe5835 100755 --- a/src/generated/Models/V1GroupVersionForDiscovery.cs +++ b/src/generated/Models/V1GroupVersionForDiscovery.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HTTPGetAction.cs b/src/generated/Models/V1HTTPGetAction.cs index c999029..a3b7395 100755 --- a/src/generated/Models/V1HTTPGetAction.cs +++ b/src/generated/Models/V1HTTPGetAction.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HTTPHeader.cs b/src/generated/Models/V1HTTPHeader.cs index b100f4e..f975d3a 100755 --- a/src/generated/Models/V1HTTPHeader.cs +++ b/src/generated/Models/V1HTTPHeader.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Handler.cs b/src/generated/Models/V1Handler.cs index cb88ee2..88b6335 100755 --- a/src/generated/Models/V1Handler.cs +++ b/src/generated/Models/V1Handler.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HorizontalPodAutoscaler.cs b/src/generated/Models/V1HorizontalPodAutoscaler.cs index ec9987e..074160e 100755 --- a/src/generated/Models/V1HorizontalPodAutoscaler.cs +++ b/src/generated/Models/V1HorizontalPodAutoscaler.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HorizontalPodAutoscalerList.cs b/src/generated/Models/V1HorizontalPodAutoscalerList.cs index 6eff56e..bd5f72c 100755 --- a/src/generated/Models/V1HorizontalPodAutoscalerList.cs +++ b/src/generated/Models/V1HorizontalPodAutoscalerList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HorizontalPodAutoscalerSpec.cs b/src/generated/Models/V1HorizontalPodAutoscalerSpec.cs index 03f6493..d812b3c 100755 --- a/src/generated/Models/V1HorizontalPodAutoscalerSpec.cs +++ b/src/generated/Models/V1HorizontalPodAutoscalerSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HorizontalPodAutoscalerStatus.cs b/src/generated/Models/V1HorizontalPodAutoscalerStatus.cs index 708d7df..05926ac 100755 --- a/src/generated/Models/V1HorizontalPodAutoscalerStatus.cs +++ b/src/generated/Models/V1HorizontalPodAutoscalerStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1HostPathVolumeSource.cs b/src/generated/Models/V1HostPathVolumeSource.cs index 654a5e0..11d4604 100755 --- a/src/generated/Models/V1HostPathVolumeSource.cs +++ b/src/generated/Models/V1HostPathVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ISCSIVolumeSource.cs b/src/generated/Models/V1ISCSIVolumeSource.cs index 2b56e07..e22416d 100755 --- a/src/generated/Models/V1ISCSIVolumeSource.cs +++ b/src/generated/Models/V1ISCSIVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Job.cs b/src/generated/Models/V1Job.cs index 760fada..bcde492 100755 --- a/src/generated/Models/V1Job.cs +++ b/src/generated/Models/V1Job.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1JobCondition.cs b/src/generated/Models/V1JobCondition.cs index 780d60f..203c435 100755 --- a/src/generated/Models/V1JobCondition.cs +++ b/src/generated/Models/V1JobCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1JobList.cs b/src/generated/Models/V1JobList.cs index ad0cee0..7011489 100755 --- a/src/generated/Models/V1JobList.cs +++ b/src/generated/Models/V1JobList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1JobSpec.cs b/src/generated/Models/V1JobSpec.cs index 8077c50..519f06e 100755 --- a/src/generated/Models/V1JobSpec.cs +++ b/src/generated/Models/V1JobSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1JobStatus.cs b/src/generated/Models/V1JobStatus.cs index 7e451f7..6a9a916 100755 --- a/src/generated/Models/V1JobStatus.cs +++ b/src/generated/Models/V1JobStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1KeyToPath.cs b/src/generated/Models/V1KeyToPath.cs index 9acfd98..3e3e2f9 100755 --- a/src/generated/Models/V1KeyToPath.cs +++ b/src/generated/Models/V1KeyToPath.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LabelSelector.cs b/src/generated/Models/V1LabelSelector.cs index 5c2fd5f..b47b6ac 100755 --- a/src/generated/Models/V1LabelSelector.cs +++ b/src/generated/Models/V1LabelSelector.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LabelSelectorRequirement.cs b/src/generated/Models/V1LabelSelectorRequirement.cs index dd020c2..9e6c1fb 100755 --- a/src/generated/Models/V1LabelSelectorRequirement.cs +++ b/src/generated/Models/V1LabelSelectorRequirement.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Lifecycle.cs b/src/generated/Models/V1Lifecycle.cs index 658cae9..43a532e 100755 --- a/src/generated/Models/V1Lifecycle.cs +++ b/src/generated/Models/V1Lifecycle.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LimitRange.cs b/src/generated/Models/V1LimitRange.cs index 477fd2b..b31ece7 100755 --- a/src/generated/Models/V1LimitRange.cs +++ b/src/generated/Models/V1LimitRange.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LimitRangeItem.cs b/src/generated/Models/V1LimitRangeItem.cs index c721a86..a01a42e 100755 --- a/src/generated/Models/V1LimitRangeItem.cs +++ b/src/generated/Models/V1LimitRangeItem.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LimitRangeList.cs b/src/generated/Models/V1LimitRangeList.cs index b69938d..8ddd088 100755 --- a/src/generated/Models/V1LimitRangeList.cs +++ b/src/generated/Models/V1LimitRangeList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LimitRangeSpec.cs b/src/generated/Models/V1LimitRangeSpec.cs index 48746b2..d0eb5dd 100755 --- a/src/generated/Models/V1LimitRangeSpec.cs +++ b/src/generated/Models/V1LimitRangeSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ListMeta.cs b/src/generated/Models/V1ListMeta.cs index 7af3d02..4bcbe27 100755 --- a/src/generated/Models/V1ListMeta.cs +++ b/src/generated/Models/V1ListMeta.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LoadBalancerIngress.cs b/src/generated/Models/V1LoadBalancerIngress.cs index 35692cb..8a425d8 100755 --- a/src/generated/Models/V1LoadBalancerIngress.cs +++ b/src/generated/Models/V1LoadBalancerIngress.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LoadBalancerStatus.cs b/src/generated/Models/V1LoadBalancerStatus.cs index 6e6b583..1f47848 100755 --- a/src/generated/Models/V1LoadBalancerStatus.cs +++ b/src/generated/Models/V1LoadBalancerStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LocalObjectReference.cs b/src/generated/Models/V1LocalObjectReference.cs index 5d4bfa2..8125ac8 100755 --- a/src/generated/Models/V1LocalObjectReference.cs +++ b/src/generated/Models/V1LocalObjectReference.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1LocalSubjectAccessReview.cs b/src/generated/Models/V1LocalSubjectAccessReview.cs index 624bf9a..2991810 100755 --- a/src/generated/Models/V1LocalSubjectAccessReview.cs +++ b/src/generated/Models/V1LocalSubjectAccessReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NFSVolumeSource.cs b/src/generated/Models/V1NFSVolumeSource.cs index 4cd8f75..5fc4240 100755 --- a/src/generated/Models/V1NFSVolumeSource.cs +++ b/src/generated/Models/V1NFSVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Namespace.cs b/src/generated/Models/V1Namespace.cs index c7a2bb2..37676a7 100755 --- a/src/generated/Models/V1Namespace.cs +++ b/src/generated/Models/V1Namespace.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NamespaceList.cs b/src/generated/Models/V1NamespaceList.cs index e7fc2e4..c2c1cda 100755 --- a/src/generated/Models/V1NamespaceList.cs +++ b/src/generated/Models/V1NamespaceList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NamespaceSpec.cs b/src/generated/Models/V1NamespaceSpec.cs index 22d9328..f261b40 100755 --- a/src/generated/Models/V1NamespaceSpec.cs +++ b/src/generated/Models/V1NamespaceSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NamespaceStatus.cs b/src/generated/Models/V1NamespaceStatus.cs index 11e2848..fbec978 100755 --- a/src/generated/Models/V1NamespaceStatus.cs +++ b/src/generated/Models/V1NamespaceStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Node.cs b/src/generated/Models/V1Node.cs index ade1b3f..0077341 100755 --- a/src/generated/Models/V1Node.cs +++ b/src/generated/Models/V1Node.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeAddress.cs b/src/generated/Models/V1NodeAddress.cs index 3ec2d92..b7f6ed3 100755 --- a/src/generated/Models/V1NodeAddress.cs +++ b/src/generated/Models/V1NodeAddress.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeAffinity.cs b/src/generated/Models/V1NodeAffinity.cs index 9364a49..5efa5ef 100755 --- a/src/generated/Models/V1NodeAffinity.cs +++ b/src/generated/Models/V1NodeAffinity.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeCondition.cs b/src/generated/Models/V1NodeCondition.cs index 8e99047..006d4fd 100755 --- a/src/generated/Models/V1NodeCondition.cs +++ b/src/generated/Models/V1NodeCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeDaemonEndpoints.cs b/src/generated/Models/V1NodeDaemonEndpoints.cs index 637c36b..92c2956 100755 --- a/src/generated/Models/V1NodeDaemonEndpoints.cs +++ b/src/generated/Models/V1NodeDaemonEndpoints.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeList.cs b/src/generated/Models/V1NodeList.cs index 1969279..3516425 100755 --- a/src/generated/Models/V1NodeList.cs +++ b/src/generated/Models/V1NodeList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeSelector.cs b/src/generated/Models/V1NodeSelector.cs index 6479f9b..5199f80 100755 --- a/src/generated/Models/V1NodeSelector.cs +++ b/src/generated/Models/V1NodeSelector.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeSelectorRequirement.cs b/src/generated/Models/V1NodeSelectorRequirement.cs index cc41d97..debac5c 100755 --- a/src/generated/Models/V1NodeSelectorRequirement.cs +++ b/src/generated/Models/V1NodeSelectorRequirement.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeSelectorTerm.cs b/src/generated/Models/V1NodeSelectorTerm.cs index eb99760..201034d 100755 --- a/src/generated/Models/V1NodeSelectorTerm.cs +++ b/src/generated/Models/V1NodeSelectorTerm.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeSpec.cs b/src/generated/Models/V1NodeSpec.cs index e4f0102..3f03722 100755 --- a/src/generated/Models/V1NodeSpec.cs +++ b/src/generated/Models/V1NodeSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeStatus.cs b/src/generated/Models/V1NodeStatus.cs index 6d6f2d3..129951f 100755 --- a/src/generated/Models/V1NodeStatus.cs +++ b/src/generated/Models/V1NodeStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NodeSystemInfo.cs b/src/generated/Models/V1NodeSystemInfo.cs index dd5a4f9..9c47a29 100755 --- a/src/generated/Models/V1NodeSystemInfo.cs +++ b/src/generated/Models/V1NodeSystemInfo.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1NonResourceAttributes.cs b/src/generated/Models/V1NonResourceAttributes.cs index 7982f9c..5e64975 100755 --- a/src/generated/Models/V1NonResourceAttributes.cs +++ b/src/generated/Models/V1NonResourceAttributes.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ObjectFieldSelector.cs b/src/generated/Models/V1ObjectFieldSelector.cs index 0ceba62..d2e0d7c 100755 --- a/src/generated/Models/V1ObjectFieldSelector.cs +++ b/src/generated/Models/V1ObjectFieldSelector.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ObjectMeta.cs b/src/generated/Models/V1ObjectMeta.cs index 3377399..5cf6174 100755 --- a/src/generated/Models/V1ObjectMeta.cs +++ b/src/generated/Models/V1ObjectMeta.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ObjectReference.cs b/src/generated/Models/V1ObjectReference.cs index e85d3fe..fae7e42 100755 --- a/src/generated/Models/V1ObjectReference.cs +++ b/src/generated/Models/V1ObjectReference.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1OwnerReference.cs b/src/generated/Models/V1OwnerReference.cs index 4e9f470..173f4f3 100755 --- a/src/generated/Models/V1OwnerReference.cs +++ b/src/generated/Models/V1OwnerReference.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolume.cs b/src/generated/Models/V1PersistentVolume.cs index e9416f1..b21748f 100755 --- a/src/generated/Models/V1PersistentVolume.cs +++ b/src/generated/Models/V1PersistentVolume.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeClaim.cs b/src/generated/Models/V1PersistentVolumeClaim.cs index 2f8d74e..ccf6b0d 100755 --- a/src/generated/Models/V1PersistentVolumeClaim.cs +++ b/src/generated/Models/V1PersistentVolumeClaim.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeClaimList.cs b/src/generated/Models/V1PersistentVolumeClaimList.cs index d7d312e..6e1f5e4 100755 --- a/src/generated/Models/V1PersistentVolumeClaimList.cs +++ b/src/generated/Models/V1PersistentVolumeClaimList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeClaimSpec.cs b/src/generated/Models/V1PersistentVolumeClaimSpec.cs index f2880d4..ef39578 100755 --- a/src/generated/Models/V1PersistentVolumeClaimSpec.cs +++ b/src/generated/Models/V1PersistentVolumeClaimSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeClaimStatus.cs b/src/generated/Models/V1PersistentVolumeClaimStatus.cs index c62f601..733ee5e 100755 --- a/src/generated/Models/V1PersistentVolumeClaimStatus.cs +++ b/src/generated/Models/V1PersistentVolumeClaimStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeClaimVolumeSource.cs b/src/generated/Models/V1PersistentVolumeClaimVolumeSource.cs index efc70b7..3b4c973 100755 --- a/src/generated/Models/V1PersistentVolumeClaimVolumeSource.cs +++ b/src/generated/Models/V1PersistentVolumeClaimVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeList.cs b/src/generated/Models/V1PersistentVolumeList.cs index fce5dc1..0058005 100755 --- a/src/generated/Models/V1PersistentVolumeList.cs +++ b/src/generated/Models/V1PersistentVolumeList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeSpec.cs b/src/generated/Models/V1PersistentVolumeSpec.cs index 4131589..332fbee 100755 --- a/src/generated/Models/V1PersistentVolumeSpec.cs +++ b/src/generated/Models/V1PersistentVolumeSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PersistentVolumeStatus.cs b/src/generated/Models/V1PersistentVolumeStatus.cs index 98b8d46..c5e97d5 100755 --- a/src/generated/Models/V1PersistentVolumeStatus.cs +++ b/src/generated/Models/V1PersistentVolumeStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PhotonPersistentDiskVolumeSource.cs b/src/generated/Models/V1PhotonPersistentDiskVolumeSource.cs index 267e245..a510ea6 100755 --- a/src/generated/Models/V1PhotonPersistentDiskVolumeSource.cs +++ b/src/generated/Models/V1PhotonPersistentDiskVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Pod.cs b/src/generated/Models/V1Pod.cs index 0e30947..194e350 100755 --- a/src/generated/Models/V1Pod.cs +++ b/src/generated/Models/V1Pod.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodAffinity.cs b/src/generated/Models/V1PodAffinity.cs index 709babd..bfe6e81 100755 --- a/src/generated/Models/V1PodAffinity.cs +++ b/src/generated/Models/V1PodAffinity.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodAffinityTerm.cs b/src/generated/Models/V1PodAffinityTerm.cs index d162305..4133623 100755 --- a/src/generated/Models/V1PodAffinityTerm.cs +++ b/src/generated/Models/V1PodAffinityTerm.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodAntiAffinity.cs b/src/generated/Models/V1PodAntiAffinity.cs index a16c2de..a202841 100755 --- a/src/generated/Models/V1PodAntiAffinity.cs +++ b/src/generated/Models/V1PodAntiAffinity.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodCondition.cs b/src/generated/Models/V1PodCondition.cs index 3594a09..091382e 100755 --- a/src/generated/Models/V1PodCondition.cs +++ b/src/generated/Models/V1PodCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodList.cs b/src/generated/Models/V1PodList.cs index c4ad400..cc5225b 100755 --- a/src/generated/Models/V1PodList.cs +++ b/src/generated/Models/V1PodList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodSecurityContext.cs b/src/generated/Models/V1PodSecurityContext.cs index 2b87cd5..f1e5a12 100755 --- a/src/generated/Models/V1PodSecurityContext.cs +++ b/src/generated/Models/V1PodSecurityContext.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodSpec.cs b/src/generated/Models/V1PodSpec.cs index 7de3781..87e870e 100755 --- a/src/generated/Models/V1PodSpec.cs +++ b/src/generated/Models/V1PodSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodStatus.cs b/src/generated/Models/V1PodStatus.cs index f57134e..b027ec2 100755 --- a/src/generated/Models/V1PodStatus.cs +++ b/src/generated/Models/V1PodStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodTemplate.cs b/src/generated/Models/V1PodTemplate.cs index 0b15eca..33790ee 100755 --- a/src/generated/Models/V1PodTemplate.cs +++ b/src/generated/Models/V1PodTemplate.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodTemplateList.cs b/src/generated/Models/V1PodTemplateList.cs index 132fabf..38ba0da 100755 --- a/src/generated/Models/V1PodTemplateList.cs +++ b/src/generated/Models/V1PodTemplateList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PodTemplateSpec.cs b/src/generated/Models/V1PodTemplateSpec.cs index e6695c1..4ea44b3 100755 --- a/src/generated/Models/V1PodTemplateSpec.cs +++ b/src/generated/Models/V1PodTemplateSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PortworxVolumeSource.cs b/src/generated/Models/V1PortworxVolumeSource.cs index 4b79150..32178fb 100755 --- a/src/generated/Models/V1PortworxVolumeSource.cs +++ b/src/generated/Models/V1PortworxVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Preconditions.cs b/src/generated/Models/V1Preconditions.cs index c616e38..e5f424a 100755 --- a/src/generated/Models/V1Preconditions.cs +++ b/src/generated/Models/V1Preconditions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1PreferredSchedulingTerm.cs b/src/generated/Models/V1PreferredSchedulingTerm.cs index 37e1efb..fdb6aa9 100755 --- a/src/generated/Models/V1PreferredSchedulingTerm.cs +++ b/src/generated/Models/V1PreferredSchedulingTerm.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Probe.cs b/src/generated/Models/V1Probe.cs index ca79502..f8de9b9 100755 --- a/src/generated/Models/V1Probe.cs +++ b/src/generated/Models/V1Probe.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ProjectedVolumeSource.cs b/src/generated/Models/V1ProjectedVolumeSource.cs index 9f984cd..53df387 100755 --- a/src/generated/Models/V1ProjectedVolumeSource.cs +++ b/src/generated/Models/V1ProjectedVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1QuobyteVolumeSource.cs b/src/generated/Models/V1QuobyteVolumeSource.cs index daeb0c8..b7f8936 100755 --- a/src/generated/Models/V1QuobyteVolumeSource.cs +++ b/src/generated/Models/V1QuobyteVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1RBDVolumeSource.cs b/src/generated/Models/V1RBDVolumeSource.cs index 00e1c73..ca145f3 100755 --- a/src/generated/Models/V1RBDVolumeSource.cs +++ b/src/generated/Models/V1RBDVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ReplicationController.cs b/src/generated/Models/V1ReplicationController.cs index 48738ba..c2908cd 100755 --- a/src/generated/Models/V1ReplicationController.cs +++ b/src/generated/Models/V1ReplicationController.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ReplicationControllerCondition.cs b/src/generated/Models/V1ReplicationControllerCondition.cs index 97a63fb..514524f 100755 --- a/src/generated/Models/V1ReplicationControllerCondition.cs +++ b/src/generated/Models/V1ReplicationControllerCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ReplicationControllerList.cs b/src/generated/Models/V1ReplicationControllerList.cs index 7aed875..cb9944e 100755 --- a/src/generated/Models/V1ReplicationControllerList.cs +++ b/src/generated/Models/V1ReplicationControllerList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ReplicationControllerSpec.cs b/src/generated/Models/V1ReplicationControllerSpec.cs index 93622b3..04253da 100755 --- a/src/generated/Models/V1ReplicationControllerSpec.cs +++ b/src/generated/Models/V1ReplicationControllerSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ReplicationControllerStatus.cs b/src/generated/Models/V1ReplicationControllerStatus.cs index 32a8336..362a72e 100755 --- a/src/generated/Models/V1ReplicationControllerStatus.cs +++ b/src/generated/Models/V1ReplicationControllerStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceAttributes.cs b/src/generated/Models/V1ResourceAttributes.cs index 9c0e9f8..d236f67 100755 --- a/src/generated/Models/V1ResourceAttributes.cs +++ b/src/generated/Models/V1ResourceAttributes.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceFieldSelector.cs b/src/generated/Models/V1ResourceFieldSelector.cs index b510304..336c38d 100755 --- a/src/generated/Models/V1ResourceFieldSelector.cs +++ b/src/generated/Models/V1ResourceFieldSelector.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceQuota.cs b/src/generated/Models/V1ResourceQuota.cs index cbfc224..e215d11 100755 --- a/src/generated/Models/V1ResourceQuota.cs +++ b/src/generated/Models/V1ResourceQuota.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceQuotaList.cs b/src/generated/Models/V1ResourceQuotaList.cs index 2b09325..6b5283f 100755 --- a/src/generated/Models/V1ResourceQuotaList.cs +++ b/src/generated/Models/V1ResourceQuotaList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceQuotaSpec.cs b/src/generated/Models/V1ResourceQuotaSpec.cs index cbd9bbc..4b26325 100755 --- a/src/generated/Models/V1ResourceQuotaSpec.cs +++ b/src/generated/Models/V1ResourceQuotaSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceQuotaStatus.cs b/src/generated/Models/V1ResourceQuotaStatus.cs index 1184aca..916143a 100755 --- a/src/generated/Models/V1ResourceQuotaStatus.cs +++ b/src/generated/Models/V1ResourceQuotaStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ResourceRequirements.cs b/src/generated/Models/V1ResourceRequirements.cs index 7d8756d..a2b74f6 100755 --- a/src/generated/Models/V1ResourceRequirements.cs +++ b/src/generated/Models/V1ResourceRequirements.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SELinuxOptions.cs b/src/generated/Models/V1SELinuxOptions.cs index e3e574e..6f777e9 100755 --- a/src/generated/Models/V1SELinuxOptions.cs +++ b/src/generated/Models/V1SELinuxOptions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Scale.cs b/src/generated/Models/V1Scale.cs index 75f0a1e..e472478 100755 --- a/src/generated/Models/V1Scale.cs +++ b/src/generated/Models/V1Scale.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ScaleIOVolumeSource.cs b/src/generated/Models/V1ScaleIOVolumeSource.cs index 43c05f2..e4044a6 100755 --- a/src/generated/Models/V1ScaleIOVolumeSource.cs +++ b/src/generated/Models/V1ScaleIOVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ScaleSpec.cs b/src/generated/Models/V1ScaleSpec.cs index 91c1659..1637f3d 100755 --- a/src/generated/Models/V1ScaleSpec.cs +++ b/src/generated/Models/V1ScaleSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ScaleStatus.cs b/src/generated/Models/V1ScaleStatus.cs index 78358ff..e3976cc 100755 --- a/src/generated/Models/V1ScaleStatus.cs +++ b/src/generated/Models/V1ScaleStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Secret.cs b/src/generated/Models/V1Secret.cs index 025427f..b62ceec 100755 --- a/src/generated/Models/V1Secret.cs +++ b/src/generated/Models/V1Secret.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SecretEnvSource.cs b/src/generated/Models/V1SecretEnvSource.cs index 02ae802..a65fc9d 100755 --- a/src/generated/Models/V1SecretEnvSource.cs +++ b/src/generated/Models/V1SecretEnvSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SecretKeySelector.cs b/src/generated/Models/V1SecretKeySelector.cs index 9298d1c..e0c1015 100755 --- a/src/generated/Models/V1SecretKeySelector.cs +++ b/src/generated/Models/V1SecretKeySelector.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SecretList.cs b/src/generated/Models/V1SecretList.cs index 5c10dd0..3e7b525 100755 --- a/src/generated/Models/V1SecretList.cs +++ b/src/generated/Models/V1SecretList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SecretProjection.cs b/src/generated/Models/V1SecretProjection.cs index d6c2b0c..9ec174f 100755 --- a/src/generated/Models/V1SecretProjection.cs +++ b/src/generated/Models/V1SecretProjection.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SecretVolumeSource.cs b/src/generated/Models/V1SecretVolumeSource.cs index a5b6361..b62bd37 100755 --- a/src/generated/Models/V1SecretVolumeSource.cs +++ b/src/generated/Models/V1SecretVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SecurityContext.cs b/src/generated/Models/V1SecurityContext.cs index 493b11f..552b6f5 100755 --- a/src/generated/Models/V1SecurityContext.cs +++ b/src/generated/Models/V1SecurityContext.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SelfSubjectAccessReview.cs b/src/generated/Models/V1SelfSubjectAccessReview.cs index 066cc51..e645e96 100755 --- a/src/generated/Models/V1SelfSubjectAccessReview.cs +++ b/src/generated/Models/V1SelfSubjectAccessReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SelfSubjectAccessReviewSpec.cs b/src/generated/Models/V1SelfSubjectAccessReviewSpec.cs index 49a0cfc..646bf38 100755 --- a/src/generated/Models/V1SelfSubjectAccessReviewSpec.cs +++ b/src/generated/Models/V1SelfSubjectAccessReviewSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServerAddressByClientCIDR.cs b/src/generated/Models/V1ServerAddressByClientCIDR.cs index 6cfb9eb..0846c82 100755 --- a/src/generated/Models/V1ServerAddressByClientCIDR.cs +++ b/src/generated/Models/V1ServerAddressByClientCIDR.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Service.cs b/src/generated/Models/V1Service.cs index 594b087..f065e3f 100755 --- a/src/generated/Models/V1Service.cs +++ b/src/generated/Models/V1Service.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServiceAccount.cs b/src/generated/Models/V1ServiceAccount.cs index f45e3eb..d834069 100755 --- a/src/generated/Models/V1ServiceAccount.cs +++ b/src/generated/Models/V1ServiceAccount.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServiceAccountList.cs b/src/generated/Models/V1ServiceAccountList.cs index 81d2289..fe88328 100755 --- a/src/generated/Models/V1ServiceAccountList.cs +++ b/src/generated/Models/V1ServiceAccountList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServiceList.cs b/src/generated/Models/V1ServiceList.cs index 6350163..d7080ee 100755 --- a/src/generated/Models/V1ServiceList.cs +++ b/src/generated/Models/V1ServiceList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServicePort.cs b/src/generated/Models/V1ServicePort.cs index c14ca90..b986cfc 100755 --- a/src/generated/Models/V1ServicePort.cs +++ b/src/generated/Models/V1ServicePort.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServiceSpec.cs b/src/generated/Models/V1ServiceSpec.cs index 130ca00..4e76382 100755 --- a/src/generated/Models/V1ServiceSpec.cs +++ b/src/generated/Models/V1ServiceSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1ServiceStatus.cs b/src/generated/Models/V1ServiceStatus.cs index 5216f18..97dea46 100755 --- a/src/generated/Models/V1ServiceStatus.cs +++ b/src/generated/Models/V1ServiceStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Status.cs b/src/generated/Models/V1Status.cs index c6df4d8..e19d86f 100755 --- a/src/generated/Models/V1Status.cs +++ b/src/generated/Models/V1Status.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1StatusCause.cs b/src/generated/Models/V1StatusCause.cs index 50e0f09..7e513c4 100755 --- a/src/generated/Models/V1StatusCause.cs +++ b/src/generated/Models/V1StatusCause.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1StatusDetails.cs b/src/generated/Models/V1StatusDetails.cs index b093f0e..6fee1f2 100755 --- a/src/generated/Models/V1StatusDetails.cs +++ b/src/generated/Models/V1StatusDetails.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1StorageClass.cs b/src/generated/Models/V1StorageClass.cs index 4be414e..57aedf3 100755 --- a/src/generated/Models/V1StorageClass.cs +++ b/src/generated/Models/V1StorageClass.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1StorageClassList.cs b/src/generated/Models/V1StorageClassList.cs index 345dc92..f60ff61 100755 --- a/src/generated/Models/V1StorageClassList.cs +++ b/src/generated/Models/V1StorageClassList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SubjectAccessReview.cs b/src/generated/Models/V1SubjectAccessReview.cs index f9b313e..5f4177c 100755 --- a/src/generated/Models/V1SubjectAccessReview.cs +++ b/src/generated/Models/V1SubjectAccessReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SubjectAccessReviewSpec.cs b/src/generated/Models/V1SubjectAccessReviewSpec.cs index fff4fd4..8041ef1 100755 --- a/src/generated/Models/V1SubjectAccessReviewSpec.cs +++ b/src/generated/Models/V1SubjectAccessReviewSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1SubjectAccessReviewStatus.cs b/src/generated/Models/V1SubjectAccessReviewStatus.cs index ee1f9cf..fdd0136 100755 --- a/src/generated/Models/V1SubjectAccessReviewStatus.cs +++ b/src/generated/Models/V1SubjectAccessReviewStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1TCPSocketAction.cs b/src/generated/Models/V1TCPSocketAction.cs index a11f959..b7db4c4 100755 --- a/src/generated/Models/V1TCPSocketAction.cs +++ b/src/generated/Models/V1TCPSocketAction.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Taint.cs b/src/generated/Models/V1Taint.cs index 42adac2..3fc4f30 100755 --- a/src/generated/Models/V1Taint.cs +++ b/src/generated/Models/V1Taint.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1TokenReview.cs b/src/generated/Models/V1TokenReview.cs index 8d9e892..bcd26de 100755 --- a/src/generated/Models/V1TokenReview.cs +++ b/src/generated/Models/V1TokenReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1TokenReviewSpec.cs b/src/generated/Models/V1TokenReviewSpec.cs index e9bd2cf..d19b0f9 100755 --- a/src/generated/Models/V1TokenReviewSpec.cs +++ b/src/generated/Models/V1TokenReviewSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1TokenReviewStatus.cs b/src/generated/Models/V1TokenReviewStatus.cs index 472e1a6..57d89a3 100755 --- a/src/generated/Models/V1TokenReviewStatus.cs +++ b/src/generated/Models/V1TokenReviewStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Toleration.cs b/src/generated/Models/V1Toleration.cs index 1ef5568..0ad932f 100755 --- a/src/generated/Models/V1Toleration.cs +++ b/src/generated/Models/V1Toleration.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1UserInfo.cs b/src/generated/Models/V1UserInfo.cs index 04a21f5..fed3805 100755 --- a/src/generated/Models/V1UserInfo.cs +++ b/src/generated/Models/V1UserInfo.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1Volume.cs b/src/generated/Models/V1Volume.cs index eecd1cd..26dcb72 100755 --- a/src/generated/Models/V1Volume.cs +++ b/src/generated/Models/V1Volume.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1VolumeMount.cs b/src/generated/Models/V1VolumeMount.cs index 2625fc3..442337e 100755 --- a/src/generated/Models/V1VolumeMount.cs +++ b/src/generated/Models/V1VolumeMount.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1VolumeProjection.cs b/src/generated/Models/V1VolumeProjection.cs index 15cb989..fb1b818 100755 --- a/src/generated/Models/V1VolumeProjection.cs +++ b/src/generated/Models/V1VolumeProjection.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1VsphereVirtualDiskVolumeSource.cs b/src/generated/Models/V1VsphereVirtualDiskVolumeSource.cs index 70f04a3..20c863a 100755 --- a/src/generated/Models/V1VsphereVirtualDiskVolumeSource.cs +++ b/src/generated/Models/V1VsphereVirtualDiskVolumeSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1WatchEvent.cs b/src/generated/Models/V1WatchEvent.cs index a04e8fd..50e28c2 100755 --- a/src/generated/Models/V1WatchEvent.cs +++ b/src/generated/Models/V1WatchEvent.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1WeightedPodAffinityTerm.cs b/src/generated/Models/V1WeightedPodAffinityTerm.cs index 5cc3c69..95dfbbb 100755 --- a/src/generated/Models/V1WeightedPodAffinityTerm.cs +++ b/src/generated/Models/V1WeightedPodAffinityTerm.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1ClusterRole.cs b/src/generated/Models/V1alpha1ClusterRole.cs index 0983471..421a069 100755 --- a/src/generated/Models/V1alpha1ClusterRole.cs +++ b/src/generated/Models/V1alpha1ClusterRole.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1ClusterRoleBinding.cs b/src/generated/Models/V1alpha1ClusterRoleBinding.cs index b16b921..f8b2754 100755 --- a/src/generated/Models/V1alpha1ClusterRoleBinding.cs +++ b/src/generated/Models/V1alpha1ClusterRoleBinding.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1ClusterRoleBindingList.cs b/src/generated/Models/V1alpha1ClusterRoleBindingList.cs index 66ff089..6239a47 100755 --- a/src/generated/Models/V1alpha1ClusterRoleBindingList.cs +++ b/src/generated/Models/V1alpha1ClusterRoleBindingList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1ClusterRoleList.cs b/src/generated/Models/V1alpha1ClusterRoleList.cs index 939bc66..5209355 100755 --- a/src/generated/Models/V1alpha1ClusterRoleList.cs +++ b/src/generated/Models/V1alpha1ClusterRoleList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1PodPreset.cs b/src/generated/Models/V1alpha1PodPreset.cs index 0f3a16e..f8c890a 100755 --- a/src/generated/Models/V1alpha1PodPreset.cs +++ b/src/generated/Models/V1alpha1PodPreset.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1PodPresetList.cs b/src/generated/Models/V1alpha1PodPresetList.cs index 7eaf476..b5a4269 100755 --- a/src/generated/Models/V1alpha1PodPresetList.cs +++ b/src/generated/Models/V1alpha1PodPresetList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1PodPresetSpec.cs b/src/generated/Models/V1alpha1PodPresetSpec.cs index de2ed59..80067c1 100755 --- a/src/generated/Models/V1alpha1PodPresetSpec.cs +++ b/src/generated/Models/V1alpha1PodPresetSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1PolicyRule.cs b/src/generated/Models/V1alpha1PolicyRule.cs index bbb451a..b1e3e8a 100755 --- a/src/generated/Models/V1alpha1PolicyRule.cs +++ b/src/generated/Models/V1alpha1PolicyRule.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1Role.cs b/src/generated/Models/V1alpha1Role.cs index c3636d9..b71b570 100755 --- a/src/generated/Models/V1alpha1Role.cs +++ b/src/generated/Models/V1alpha1Role.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1RoleBinding.cs b/src/generated/Models/V1alpha1RoleBinding.cs index 9dbf711..d132ee3 100755 --- a/src/generated/Models/V1alpha1RoleBinding.cs +++ b/src/generated/Models/V1alpha1RoleBinding.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1RoleBindingList.cs b/src/generated/Models/V1alpha1RoleBindingList.cs index 7f9a36a..5d1f2e8 100755 --- a/src/generated/Models/V1alpha1RoleBindingList.cs +++ b/src/generated/Models/V1alpha1RoleBindingList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1RoleList.cs b/src/generated/Models/V1alpha1RoleList.cs index 558d8cd..5de5cb0 100755 --- a/src/generated/Models/V1alpha1RoleList.cs +++ b/src/generated/Models/V1alpha1RoleList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1RoleRef.cs b/src/generated/Models/V1alpha1RoleRef.cs index 47c36e4..33945f9 100755 --- a/src/generated/Models/V1alpha1RoleRef.cs +++ b/src/generated/Models/V1alpha1RoleRef.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1alpha1Subject.cs b/src/generated/Models/V1alpha1Subject.cs index 889f528..d27ac04 100755 --- a/src/generated/Models/V1alpha1Subject.cs +++ b/src/generated/Models/V1alpha1Subject.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1APIVersion.cs b/src/generated/Models/V1beta1APIVersion.cs index 8800b82..0c6d798 100755 --- a/src/generated/Models/V1beta1APIVersion.cs +++ b/src/generated/Models/V1beta1APIVersion.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1CertificateSigningRequest.cs b/src/generated/Models/V1beta1CertificateSigningRequest.cs index 9d2a165..7ed85f1 100755 --- a/src/generated/Models/V1beta1CertificateSigningRequest.cs +++ b/src/generated/Models/V1beta1CertificateSigningRequest.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1CertificateSigningRequestCondition.cs b/src/generated/Models/V1beta1CertificateSigningRequestCondition.cs index 8da3e37..c8f1ef9 100755 --- a/src/generated/Models/V1beta1CertificateSigningRequestCondition.cs +++ b/src/generated/Models/V1beta1CertificateSigningRequestCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1CertificateSigningRequestList.cs b/src/generated/Models/V1beta1CertificateSigningRequestList.cs index 04f8ec6..0dcf29b 100755 --- a/src/generated/Models/V1beta1CertificateSigningRequestList.cs +++ b/src/generated/Models/V1beta1CertificateSigningRequestList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1CertificateSigningRequestSpec.cs b/src/generated/Models/V1beta1CertificateSigningRequestSpec.cs index 8096a07..b35bfad 100755 --- a/src/generated/Models/V1beta1CertificateSigningRequestSpec.cs +++ b/src/generated/Models/V1beta1CertificateSigningRequestSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1CertificateSigningRequestStatus.cs b/src/generated/Models/V1beta1CertificateSigningRequestStatus.cs index 25c1872..d2ff3b0 100755 --- a/src/generated/Models/V1beta1CertificateSigningRequestStatus.cs +++ b/src/generated/Models/V1beta1CertificateSigningRequestStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ClusterRole.cs b/src/generated/Models/V1beta1ClusterRole.cs index 9bbb7bf..587c0c5 100755 --- a/src/generated/Models/V1beta1ClusterRole.cs +++ b/src/generated/Models/V1beta1ClusterRole.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ClusterRoleBinding.cs b/src/generated/Models/V1beta1ClusterRoleBinding.cs index 2910bf9..63121ec 100755 --- a/src/generated/Models/V1beta1ClusterRoleBinding.cs +++ b/src/generated/Models/V1beta1ClusterRoleBinding.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ClusterRoleBindingList.cs b/src/generated/Models/V1beta1ClusterRoleBindingList.cs index c8e99e7..7516bf4 100755 --- a/src/generated/Models/V1beta1ClusterRoleBindingList.cs +++ b/src/generated/Models/V1beta1ClusterRoleBindingList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ClusterRoleList.cs b/src/generated/Models/V1beta1ClusterRoleList.cs index 258e74d..01a7940 100755 --- a/src/generated/Models/V1beta1ClusterRoleList.cs +++ b/src/generated/Models/V1beta1ClusterRoleList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1DaemonSet.cs b/src/generated/Models/V1beta1DaemonSet.cs index f396f94..abd5179 100755 --- a/src/generated/Models/V1beta1DaemonSet.cs +++ b/src/generated/Models/V1beta1DaemonSet.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1DaemonSetList.cs b/src/generated/Models/V1beta1DaemonSetList.cs index 08c70ed..152ac84 100755 --- a/src/generated/Models/V1beta1DaemonSetList.cs +++ b/src/generated/Models/V1beta1DaemonSetList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1DaemonSetSpec.cs b/src/generated/Models/V1beta1DaemonSetSpec.cs index e6bc3a5..a947092 100755 --- a/src/generated/Models/V1beta1DaemonSetSpec.cs +++ b/src/generated/Models/V1beta1DaemonSetSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1DaemonSetStatus.cs b/src/generated/Models/V1beta1DaemonSetStatus.cs index b5069d8..a4fa43e 100755 --- a/src/generated/Models/V1beta1DaemonSetStatus.cs +++ b/src/generated/Models/V1beta1DaemonSetStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1DaemonSetUpdateStrategy.cs b/src/generated/Models/V1beta1DaemonSetUpdateStrategy.cs index 9acba8c..ce5b7ca 100755 --- a/src/generated/Models/V1beta1DaemonSetUpdateStrategy.cs +++ b/src/generated/Models/V1beta1DaemonSetUpdateStrategy.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1Eviction.cs b/src/generated/Models/V1beta1Eviction.cs index db3bbca..03dc6cc 100755 --- a/src/generated/Models/V1beta1Eviction.cs +++ b/src/generated/Models/V1beta1Eviction.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1FSGroupStrategyOptions.cs b/src/generated/Models/V1beta1FSGroupStrategyOptions.cs index 3ef8946..fc521d9 100755 --- a/src/generated/Models/V1beta1FSGroupStrategyOptions.cs +++ b/src/generated/Models/V1beta1FSGroupStrategyOptions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1HTTPIngressPath.cs b/src/generated/Models/V1beta1HTTPIngressPath.cs index 8a8f229..9216230 100755 --- a/src/generated/Models/V1beta1HTTPIngressPath.cs +++ b/src/generated/Models/V1beta1HTTPIngressPath.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1HTTPIngressRuleValue.cs b/src/generated/Models/V1beta1HTTPIngressRuleValue.cs index 1ce6f70..b9fea74 100755 --- a/src/generated/Models/V1beta1HTTPIngressRuleValue.cs +++ b/src/generated/Models/V1beta1HTTPIngressRuleValue.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1HostPortRange.cs b/src/generated/Models/V1beta1HostPortRange.cs index a3a4df6..18ce1ea 100755 --- a/src/generated/Models/V1beta1HostPortRange.cs +++ b/src/generated/Models/V1beta1HostPortRange.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IDRange.cs b/src/generated/Models/V1beta1IDRange.cs index 6e76b3a..1bd1d9b 100755 --- a/src/generated/Models/V1beta1IDRange.cs +++ b/src/generated/Models/V1beta1IDRange.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1Ingress.cs b/src/generated/Models/V1beta1Ingress.cs index d846116..beaab33 100755 --- a/src/generated/Models/V1beta1Ingress.cs +++ b/src/generated/Models/V1beta1Ingress.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IngressBackend.cs b/src/generated/Models/V1beta1IngressBackend.cs index d8a5e6b..c0c8440 100755 --- a/src/generated/Models/V1beta1IngressBackend.cs +++ b/src/generated/Models/V1beta1IngressBackend.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IngressList.cs b/src/generated/Models/V1beta1IngressList.cs index f51b77a..c023c52 100755 --- a/src/generated/Models/V1beta1IngressList.cs +++ b/src/generated/Models/V1beta1IngressList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IngressRule.cs b/src/generated/Models/V1beta1IngressRule.cs index 7f5526d..0081b52 100755 --- a/src/generated/Models/V1beta1IngressRule.cs +++ b/src/generated/Models/V1beta1IngressRule.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IngressSpec.cs b/src/generated/Models/V1beta1IngressSpec.cs index c594abd..4d4da12 100755 --- a/src/generated/Models/V1beta1IngressSpec.cs +++ b/src/generated/Models/V1beta1IngressSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IngressStatus.cs b/src/generated/Models/V1beta1IngressStatus.cs index d74e845..43e3a46 100755 --- a/src/generated/Models/V1beta1IngressStatus.cs +++ b/src/generated/Models/V1beta1IngressStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1IngressTLS.cs b/src/generated/Models/V1beta1IngressTLS.cs index 90364f2..acfc3d4 100755 --- a/src/generated/Models/V1beta1IngressTLS.cs +++ b/src/generated/Models/V1beta1IngressTLS.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1LocalSubjectAccessReview.cs b/src/generated/Models/V1beta1LocalSubjectAccessReview.cs index ade0e60..6f206d0 100755 --- a/src/generated/Models/V1beta1LocalSubjectAccessReview.cs +++ b/src/generated/Models/V1beta1LocalSubjectAccessReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NetworkPolicy.cs b/src/generated/Models/V1beta1NetworkPolicy.cs index 2240ae4..f11e09c 100755 --- a/src/generated/Models/V1beta1NetworkPolicy.cs +++ b/src/generated/Models/V1beta1NetworkPolicy.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NetworkPolicyIngressRule.cs b/src/generated/Models/V1beta1NetworkPolicyIngressRule.cs index 81a1a2d..0451bbb 100755 --- a/src/generated/Models/V1beta1NetworkPolicyIngressRule.cs +++ b/src/generated/Models/V1beta1NetworkPolicyIngressRule.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NetworkPolicyList.cs b/src/generated/Models/V1beta1NetworkPolicyList.cs index 8ccc1a4..343933d 100755 --- a/src/generated/Models/V1beta1NetworkPolicyList.cs +++ b/src/generated/Models/V1beta1NetworkPolicyList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NetworkPolicyPeer.cs b/src/generated/Models/V1beta1NetworkPolicyPeer.cs index 9e39433..458f89d 100755 --- a/src/generated/Models/V1beta1NetworkPolicyPeer.cs +++ b/src/generated/Models/V1beta1NetworkPolicyPeer.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NetworkPolicyPort.cs b/src/generated/Models/V1beta1NetworkPolicyPort.cs index 0308cfd..ab8f6c5 100755 --- a/src/generated/Models/V1beta1NetworkPolicyPort.cs +++ b/src/generated/Models/V1beta1NetworkPolicyPort.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NetworkPolicySpec.cs b/src/generated/Models/V1beta1NetworkPolicySpec.cs index 10cc82a..a83e8c4 100755 --- a/src/generated/Models/V1beta1NetworkPolicySpec.cs +++ b/src/generated/Models/V1beta1NetworkPolicySpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1NonResourceAttributes.cs b/src/generated/Models/V1beta1NonResourceAttributes.cs index 21f018d..933a76f 100755 --- a/src/generated/Models/V1beta1NonResourceAttributes.cs +++ b/src/generated/Models/V1beta1NonResourceAttributes.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodDisruptionBudget.cs b/src/generated/Models/V1beta1PodDisruptionBudget.cs index 955c169..111a41e 100755 --- a/src/generated/Models/V1beta1PodDisruptionBudget.cs +++ b/src/generated/Models/V1beta1PodDisruptionBudget.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodDisruptionBudgetList.cs b/src/generated/Models/V1beta1PodDisruptionBudgetList.cs index 7ad2753..fc181cc 100755 --- a/src/generated/Models/V1beta1PodDisruptionBudgetList.cs +++ b/src/generated/Models/V1beta1PodDisruptionBudgetList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodDisruptionBudgetSpec.cs b/src/generated/Models/V1beta1PodDisruptionBudgetSpec.cs index 071fb38..1110613 100755 --- a/src/generated/Models/V1beta1PodDisruptionBudgetSpec.cs +++ b/src/generated/Models/V1beta1PodDisruptionBudgetSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodDisruptionBudgetStatus.cs b/src/generated/Models/V1beta1PodDisruptionBudgetStatus.cs index 4701557..d46600c 100755 --- a/src/generated/Models/V1beta1PodDisruptionBudgetStatus.cs +++ b/src/generated/Models/V1beta1PodDisruptionBudgetStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodSecurityPolicy.cs b/src/generated/Models/V1beta1PodSecurityPolicy.cs index 18ccfc8..d2d7b82 100755 --- a/src/generated/Models/V1beta1PodSecurityPolicy.cs +++ b/src/generated/Models/V1beta1PodSecurityPolicy.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodSecurityPolicyList.cs b/src/generated/Models/V1beta1PodSecurityPolicyList.cs index 80f1ae3..78d48d0 100755 --- a/src/generated/Models/V1beta1PodSecurityPolicyList.cs +++ b/src/generated/Models/V1beta1PodSecurityPolicyList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PodSecurityPolicySpec.cs b/src/generated/Models/V1beta1PodSecurityPolicySpec.cs index 0a32757..7a22d6c 100755 --- a/src/generated/Models/V1beta1PodSecurityPolicySpec.cs +++ b/src/generated/Models/V1beta1PodSecurityPolicySpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1PolicyRule.cs b/src/generated/Models/V1beta1PolicyRule.cs index 7ae22d4..8231c0e 100755 --- a/src/generated/Models/V1beta1PolicyRule.cs +++ b/src/generated/Models/V1beta1PolicyRule.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ReplicaSet.cs b/src/generated/Models/V1beta1ReplicaSet.cs index cdab161..3d1a4a7 100755 --- a/src/generated/Models/V1beta1ReplicaSet.cs +++ b/src/generated/Models/V1beta1ReplicaSet.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ReplicaSetCondition.cs b/src/generated/Models/V1beta1ReplicaSetCondition.cs index ffc01d8..214f441 100755 --- a/src/generated/Models/V1beta1ReplicaSetCondition.cs +++ b/src/generated/Models/V1beta1ReplicaSetCondition.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ReplicaSetList.cs b/src/generated/Models/V1beta1ReplicaSetList.cs index 62677b5..d59c9af 100755 --- a/src/generated/Models/V1beta1ReplicaSetList.cs +++ b/src/generated/Models/V1beta1ReplicaSetList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ReplicaSetSpec.cs b/src/generated/Models/V1beta1ReplicaSetSpec.cs index dad39dd..02fbe73 100755 --- a/src/generated/Models/V1beta1ReplicaSetSpec.cs +++ b/src/generated/Models/V1beta1ReplicaSetSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ReplicaSetStatus.cs b/src/generated/Models/V1beta1ReplicaSetStatus.cs index 40b5eee..813899e 100755 --- a/src/generated/Models/V1beta1ReplicaSetStatus.cs +++ b/src/generated/Models/V1beta1ReplicaSetStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ResourceAttributes.cs b/src/generated/Models/V1beta1ResourceAttributes.cs index aa1d3df..13b3612 100755 --- a/src/generated/Models/V1beta1ResourceAttributes.cs +++ b/src/generated/Models/V1beta1ResourceAttributes.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1Role.cs b/src/generated/Models/V1beta1Role.cs index c15e933..158b3af 100755 --- a/src/generated/Models/V1beta1Role.cs +++ b/src/generated/Models/V1beta1Role.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1RoleBinding.cs b/src/generated/Models/V1beta1RoleBinding.cs index fe63809..0d447f2 100755 --- a/src/generated/Models/V1beta1RoleBinding.cs +++ b/src/generated/Models/V1beta1RoleBinding.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1RoleBindingList.cs b/src/generated/Models/V1beta1RoleBindingList.cs index 4982529..16ca1ec 100755 --- a/src/generated/Models/V1beta1RoleBindingList.cs +++ b/src/generated/Models/V1beta1RoleBindingList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1RoleList.cs b/src/generated/Models/V1beta1RoleList.cs index ac7bf74..d861fc3 100755 --- a/src/generated/Models/V1beta1RoleList.cs +++ b/src/generated/Models/V1beta1RoleList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1RoleRef.cs b/src/generated/Models/V1beta1RoleRef.cs index 9b4402d..85cb416 100755 --- a/src/generated/Models/V1beta1RoleRef.cs +++ b/src/generated/Models/V1beta1RoleRef.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1RollingUpdateDaemonSet.cs b/src/generated/Models/V1beta1RollingUpdateDaemonSet.cs index c9e68eb..d9f7994 100755 --- a/src/generated/Models/V1beta1RollingUpdateDaemonSet.cs +++ b/src/generated/Models/V1beta1RollingUpdateDaemonSet.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1RunAsUserStrategyOptions.cs b/src/generated/Models/V1beta1RunAsUserStrategyOptions.cs index 131bcab..258efed 100755 --- a/src/generated/Models/V1beta1RunAsUserStrategyOptions.cs +++ b/src/generated/Models/V1beta1RunAsUserStrategyOptions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SELinuxStrategyOptions.cs b/src/generated/Models/V1beta1SELinuxStrategyOptions.cs index a0a498c..320b2eb 100755 --- a/src/generated/Models/V1beta1SELinuxStrategyOptions.cs +++ b/src/generated/Models/V1beta1SELinuxStrategyOptions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SelfSubjectAccessReview.cs b/src/generated/Models/V1beta1SelfSubjectAccessReview.cs index e36c5c2..34763ca 100755 --- a/src/generated/Models/V1beta1SelfSubjectAccessReview.cs +++ b/src/generated/Models/V1beta1SelfSubjectAccessReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SelfSubjectAccessReviewSpec.cs b/src/generated/Models/V1beta1SelfSubjectAccessReviewSpec.cs index d66700e..69b4b48 100755 --- a/src/generated/Models/V1beta1SelfSubjectAccessReviewSpec.cs +++ b/src/generated/Models/V1beta1SelfSubjectAccessReviewSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1StatefulSet.cs b/src/generated/Models/V1beta1StatefulSet.cs index 8cc4abb..f0824ca 100755 --- a/src/generated/Models/V1beta1StatefulSet.cs +++ b/src/generated/Models/V1beta1StatefulSet.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1StatefulSetList.cs b/src/generated/Models/V1beta1StatefulSetList.cs index 2b1161b..c5eab46 100755 --- a/src/generated/Models/V1beta1StatefulSetList.cs +++ b/src/generated/Models/V1beta1StatefulSetList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1StatefulSetSpec.cs b/src/generated/Models/V1beta1StatefulSetSpec.cs index 47cdab3..ea39dcc 100755 --- a/src/generated/Models/V1beta1StatefulSetSpec.cs +++ b/src/generated/Models/V1beta1StatefulSetSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1StatefulSetStatus.cs b/src/generated/Models/V1beta1StatefulSetStatus.cs index 1e830c9..3b5bf24 100755 --- a/src/generated/Models/V1beta1StatefulSetStatus.cs +++ b/src/generated/Models/V1beta1StatefulSetStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1StorageClass.cs b/src/generated/Models/V1beta1StorageClass.cs index 861c8d2..8247260 100755 --- a/src/generated/Models/V1beta1StorageClass.cs +++ b/src/generated/Models/V1beta1StorageClass.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1StorageClassList.cs b/src/generated/Models/V1beta1StorageClassList.cs index 9edd380..c169e5b 100755 --- a/src/generated/Models/V1beta1StorageClassList.cs +++ b/src/generated/Models/V1beta1StorageClassList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1Subject.cs b/src/generated/Models/V1beta1Subject.cs index 62f0b09..58d6dde 100755 --- a/src/generated/Models/V1beta1Subject.cs +++ b/src/generated/Models/V1beta1Subject.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SubjectAccessReview.cs b/src/generated/Models/V1beta1SubjectAccessReview.cs index 1b6221c..4aa134f 100755 --- a/src/generated/Models/V1beta1SubjectAccessReview.cs +++ b/src/generated/Models/V1beta1SubjectAccessReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SubjectAccessReviewSpec.cs b/src/generated/Models/V1beta1SubjectAccessReviewSpec.cs index 4f6232e..73a73ac 100755 --- a/src/generated/Models/V1beta1SubjectAccessReviewSpec.cs +++ b/src/generated/Models/V1beta1SubjectAccessReviewSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SubjectAccessReviewStatus.cs b/src/generated/Models/V1beta1SubjectAccessReviewStatus.cs index 8c7697b..3212084 100755 --- a/src/generated/Models/V1beta1SubjectAccessReviewStatus.cs +++ b/src/generated/Models/V1beta1SubjectAccessReviewStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1SupplementalGroupsStrategyOptions.cs b/src/generated/Models/V1beta1SupplementalGroupsStrategyOptions.cs index d66afbb..847f4e4 100755 --- a/src/generated/Models/V1beta1SupplementalGroupsStrategyOptions.cs +++ b/src/generated/Models/V1beta1SupplementalGroupsStrategyOptions.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ThirdPartyResource.cs b/src/generated/Models/V1beta1ThirdPartyResource.cs index 497f251..9c440e1 100755 --- a/src/generated/Models/V1beta1ThirdPartyResource.cs +++ b/src/generated/Models/V1beta1ThirdPartyResource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1ThirdPartyResourceList.cs b/src/generated/Models/V1beta1ThirdPartyResourceList.cs index fbce424..562be26 100755 --- a/src/generated/Models/V1beta1ThirdPartyResourceList.cs +++ b/src/generated/Models/V1beta1ThirdPartyResourceList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1TokenReview.cs b/src/generated/Models/V1beta1TokenReview.cs index ceca64c..bdb69ee 100755 --- a/src/generated/Models/V1beta1TokenReview.cs +++ b/src/generated/Models/V1beta1TokenReview.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1TokenReviewSpec.cs b/src/generated/Models/V1beta1TokenReviewSpec.cs index d4424fa..d699edf 100755 --- a/src/generated/Models/V1beta1TokenReviewSpec.cs +++ b/src/generated/Models/V1beta1TokenReviewSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1TokenReviewStatus.cs b/src/generated/Models/V1beta1TokenReviewStatus.cs index ddb337e..f3161a6 100755 --- a/src/generated/Models/V1beta1TokenReviewStatus.cs +++ b/src/generated/Models/V1beta1TokenReviewStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V1beta1UserInfo.cs b/src/generated/Models/V1beta1UserInfo.cs index ae6f9dc..6fce5d2 100755 --- a/src/generated/Models/V1beta1UserInfo.cs +++ b/src/generated/Models/V1beta1UserInfo.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1CronJob.cs b/src/generated/Models/V2alpha1CronJob.cs index e4e30a3..c17b0fd 100755 --- a/src/generated/Models/V2alpha1CronJob.cs +++ b/src/generated/Models/V2alpha1CronJob.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1CronJobList.cs b/src/generated/Models/V2alpha1CronJobList.cs index 90aaf21..bd451af 100755 --- a/src/generated/Models/V2alpha1CronJobList.cs +++ b/src/generated/Models/V2alpha1CronJobList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1CronJobSpec.cs b/src/generated/Models/V2alpha1CronJobSpec.cs index baa256b..5ce5ddb 100755 --- a/src/generated/Models/V2alpha1CronJobSpec.cs +++ b/src/generated/Models/V2alpha1CronJobSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1CronJobStatus.cs b/src/generated/Models/V2alpha1CronJobStatus.cs index 12470d1..c703327 100755 --- a/src/generated/Models/V2alpha1CronJobStatus.cs +++ b/src/generated/Models/V2alpha1CronJobStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1CrossVersionObjectReference.cs b/src/generated/Models/V2alpha1CrossVersionObjectReference.cs index 370b95d..dd6fa4a 100755 --- a/src/generated/Models/V2alpha1CrossVersionObjectReference.cs +++ b/src/generated/Models/V2alpha1CrossVersionObjectReference.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1HorizontalPodAutoscaler.cs b/src/generated/Models/V2alpha1HorizontalPodAutoscaler.cs index 23217e5..ea96149 100755 --- a/src/generated/Models/V2alpha1HorizontalPodAutoscaler.cs +++ b/src/generated/Models/V2alpha1HorizontalPodAutoscaler.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1HorizontalPodAutoscalerList.cs b/src/generated/Models/V2alpha1HorizontalPodAutoscalerList.cs index 22e4342..f98ca4a 100755 --- a/src/generated/Models/V2alpha1HorizontalPodAutoscalerList.cs +++ b/src/generated/Models/V2alpha1HorizontalPodAutoscalerList.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1HorizontalPodAutoscalerSpec.cs b/src/generated/Models/V2alpha1HorizontalPodAutoscalerSpec.cs index 31b130d..b8297a5 100755 --- a/src/generated/Models/V2alpha1HorizontalPodAutoscalerSpec.cs +++ b/src/generated/Models/V2alpha1HorizontalPodAutoscalerSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1HorizontalPodAutoscalerStatus.cs b/src/generated/Models/V2alpha1HorizontalPodAutoscalerStatus.cs index 32f8f77..22c93a3 100755 --- a/src/generated/Models/V2alpha1HorizontalPodAutoscalerStatus.cs +++ b/src/generated/Models/V2alpha1HorizontalPodAutoscalerStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1JobTemplateSpec.cs b/src/generated/Models/V2alpha1JobTemplateSpec.cs index 92810e8..73edc62 100755 --- a/src/generated/Models/V2alpha1JobTemplateSpec.cs +++ b/src/generated/Models/V2alpha1JobTemplateSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1MetricSpec.cs b/src/generated/Models/V2alpha1MetricSpec.cs index 76d8128..00c10dc 100755 --- a/src/generated/Models/V2alpha1MetricSpec.cs +++ b/src/generated/Models/V2alpha1MetricSpec.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1MetricStatus.cs b/src/generated/Models/V2alpha1MetricStatus.cs index ef78fea..8860663 100755 --- a/src/generated/Models/V2alpha1MetricStatus.cs +++ b/src/generated/Models/V2alpha1MetricStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1ObjectMetricSource.cs b/src/generated/Models/V2alpha1ObjectMetricSource.cs index 6bb7c5b..c58fd72 100755 --- a/src/generated/Models/V2alpha1ObjectMetricSource.cs +++ b/src/generated/Models/V2alpha1ObjectMetricSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1ObjectMetricStatus.cs b/src/generated/Models/V2alpha1ObjectMetricStatus.cs index 3a7d10c..c0e70dc 100755 --- a/src/generated/Models/V2alpha1ObjectMetricStatus.cs +++ b/src/generated/Models/V2alpha1ObjectMetricStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1PodsMetricSource.cs b/src/generated/Models/V2alpha1PodsMetricSource.cs index 31ec586..0a2534a 100755 --- a/src/generated/Models/V2alpha1PodsMetricSource.cs +++ b/src/generated/Models/V2alpha1PodsMetricSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1PodsMetricStatus.cs b/src/generated/Models/V2alpha1PodsMetricStatus.cs index 69723bf..68c0a67 100755 --- a/src/generated/Models/V2alpha1PodsMetricStatus.cs +++ b/src/generated/Models/V2alpha1PodsMetricStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1ResourceMetricSource.cs b/src/generated/Models/V2alpha1ResourceMetricSource.cs index bfb57a5..24e041a 100755 --- a/src/generated/Models/V2alpha1ResourceMetricSource.cs +++ b/src/generated/Models/V2alpha1ResourceMetricSource.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/V2alpha1ResourceMetricStatus.cs b/src/generated/Models/V2alpha1ResourceMetricStatus.cs index a98a89d..df6d05d 100755 --- a/src/generated/Models/V2alpha1ResourceMetricStatus.cs +++ b/src/generated/Models/V2alpha1ResourceMetricStatus.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/Models/VersionInfo.cs b/src/generated/Models/VersionInfo.cs index 2014eaa..36646b4 100755 --- a/src/generated/Models/VersionInfo.cs +++ b/src/generated/Models/VersionInfo.cs @@ -1,4 +1,4 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. diff --git a/src/generated/swagger.json b/src/generated/swagger.json index 309bb35..55af90f 100644 --- a/src/generated/swagger.json +++ b/src/generated/swagger.json @@ -33315,6 +33315,240 @@ } } } + }, + "/apis/{fqdn}/v1/{resource}": { + "get": { + "responses": { + "200": { + "description": "A list of Resources", + "schema": { + "type": "object" + } + } + }, + "parameters": [ + { + "uniqueItems": true, + "in": "query", + "type": "boolean", + "name": "watch", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion." + }, + { + "description": "The Third party Resource fqdn", + "required": true, + "type": "string", + "name": "fqdn", + "in": "path" + }, + { + "description": "The Resource type", + "required": true, + "type": "string", + "name": "resource", + "in": "path" + } + ], + "tags": [ + "third_party_resources" + ], + "summary": "Gets Resources", + "operationId": "listThirdPartyResource", + "description": "Returns a list of Resources" + } + }, + "/apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name}": { + "put": { + "responses": { + "201": { + "description": "A list of Resources", + "schema": { + "type": "object" + } + } + }, + "parameters": [ + { + "description": "The Resource's namespace", + "required": true, + "type": "string", + "name": "namespace", + "in": "path" + }, + { + "description": "The Third party Resource fqdn", + "required": true, + "type": "string", + "name": "fqdn", + "in": "path" + }, + { + "description": "The Resource type", + "required": true, + "type": "string", + "name": "resource", + "in": "path" + }, + { + "schema": { + "type": "object" + }, + "description": "The JSON schema of the Resource to create.", + "required": true, + "name": "body", + "in": "body" + } + ], + "tags": [ + "third_party_resources" + ], + "summary": "Update a Resource", + "operationId": "updateThirdPartyResource", + "description": "Update the specified third party resource of the type specified" + }, + "delete": { + "responses": { + "200": { + "description": "OK", + "schema": { + "type": "object" + } + } + }, + "parameters": [ + { + "schema": { + "$ref": "#/definitions/v1.DeleteOptions" + }, + "required": true, + "name": "body", + "in": "body" + }, + { + "uniqueItems": true, + "in": "query", + "type": "integer", + "name": "gracePeriodSeconds", + "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately." + }, + { + "uniqueItems": true, + "in": "query", + "type": "boolean", + "name": "orphanDependents", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." + }, + { + "uniqueItems": true, + "in": "query", + "type": "string", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy." + } + ], + "tags": [ + "third_party_resources" + ], + "summary": "Deletes a specific Resource", + "operationId": "deleteThirdPartyResource", + "description": "Deletes the specified Resource in the specified namespace" + }, + "get": { + "responses": { + "200": { + "description": "A single Resource", + "schema": { + "type": "object" + } + } + }, + "parameters": [ + { + "description": "The Resource's namespace", + "required": true, + "type": "string", + "name": "namespace", + "in": "path" + }, + { + "description": "The Resource's name", + "required": true, + "type": "string", + "name": "name", + "in": "path" + }, + { + "description": "The Third party Resource fqdn", + "required": true, + "type": "string", + "name": "fqdn", + "in": "path" + }, + { + "description": "The Resource type", + "required": true, + "type": "string", + "name": "resource", + "in": "path" + } + ], + "tags": [ + "third_party_resources" + ], + "summary": "Gets a specific Resource", + "operationId": "getThirdPartyResource", + "description": "Returns a specific Resource in a namespace" + } + }, + "/apis/{fqdn}/v1/namespaces/{namespace}/{resource}": { + "post": { + "responses": { + "201": { + "description": "A list of Resources", + "schema": { + "type": "object" + } + } + }, + "parameters": [ + { + "description": "The Resource's namespace", + "required": true, + "type": "string", + "name": "namespace", + "in": "path" + }, + { + "description": "The Third party Resource fqdn", + "required": true, + "type": "string", + "name": "fqdn", + "in": "path" + }, + { + "description": "The Resource type", + "required": true, + "type": "string", + "name": "resource", + "in": "path" + }, + { + "schema": { + "type": "object" + }, + "description": "The JSON schema of the Resource to create.", + "required": true, + "name": "body", + "in": "body" + } + ], + "tags": [ + "third_party_resources" + ], + "summary": "Create a Resource", + "operationId": "createThirdPartyResource", + "description": "Creates a third party resource of the type specified" + } } }, "definitions": {