diff --git a/csharp.settings b/csharp.settings index 6888885..49790c7 100644 --- a/csharp.settings +++ b/csharp.settings @@ -1,3 +1,3 @@ -export KUBERNETES_BRANCH=v1.12.0 +export KUBERNETES_BRANCH=v1.13.0 export CLIENT_VERSION=0.0.1 export PACKAGE_NAME=k8s diff --git a/examples/namespace/Namespace.cs b/examples/namespace/Namespace.cs index f13b836..e68ea3a 100644 --- a/examples/namespace/Namespace.cs +++ b/examples/namespace/Namespace.cs @@ -67,7 +67,7 @@ namespace @namespace ListNamespaces(client); - var status = client.DeleteNamespace(new V1DeleteOptions(), ns.Metadata.Name); + var status = client.DeleteNamespace(ns.Metadata.Name, new V1DeleteOptions()); if (status.HasObject) { diff --git a/src/KubernetesClient/generated/IKubernetes.cs b/src/KubernetesClient/generated/IKubernetes.cs index 1a8d600..d9f337c 100644 --- a/src/KubernetesClient/generated/IKubernetes.cs +++ b/src/KubernetesClient/generated/IKubernetes.cs @@ -570,10 +570,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -621,6 +617,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -630,13 +630,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespaceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespaceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Namespace /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -646,7 +656,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespaceWithHttpMessagesAsync(V1Namespace body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespaceWithHttpMessagesAsync(V1Namespace body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Binding @@ -656,6 +666,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -665,7 +685,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedBindingWithHttpMessagesAsync(V1Binding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedBindingWithHttpMessagesAsync(V1Binding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ConfigMap @@ -700,10 +720,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -751,6 +767,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -760,7 +780,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ConfigMap @@ -770,6 +790,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -779,7 +809,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ConfigMap @@ -814,10 +844,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -865,6 +891,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -874,7 +904,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ConfigMap @@ -915,6 +945,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -924,19 +960,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ConfigMap /// - /// - /// /// /// name of the ConfigMap /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -976,7 +1012,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedConfigMapWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedConfigMapWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ConfigMap @@ -989,6 +1025,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -998,7 +1040,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedConfigMapWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedConfigMapWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Endpoints @@ -1033,10 +1075,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -1084,6 +1122,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1093,7 +1135,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create Endpoints @@ -1103,6 +1145,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1112,7 +1164,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Endpoints @@ -1147,10 +1199,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -1198,6 +1246,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1207,7 +1259,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Endpoints @@ -1248,6 +1300,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -1257,19 +1315,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete Endpoints /// - /// - /// /// /// name of the Endpoints /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -1309,7 +1367,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedEndpointsWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedEndpointsWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Endpoints @@ -1322,6 +1380,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -1331,7 +1395,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedEndpointsWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedEndpointsWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Event @@ -1366,10 +1430,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -1417,6 +1477,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1426,7 +1490,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create an Event @@ -1436,6 +1500,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1445,7 +1519,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedEventWithHttpMessagesAsync(V1Event body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedEventWithHttpMessagesAsync(V1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Event @@ -1480,10 +1554,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -1531,6 +1601,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1540,7 +1614,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Event @@ -1581,6 +1655,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -1590,19 +1670,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedEventWithHttpMessagesAsync(V1Event body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedEventWithHttpMessagesAsync(V1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete an Event /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -1642,7 +1722,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedEventWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedEventWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Event @@ -1655,6 +1735,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -1664,7 +1750,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedEventWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedEventWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind LimitRange @@ -1699,10 +1785,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -1750,6 +1832,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1759,7 +1845,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a LimitRange @@ -1769,6 +1855,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1778,7 +1874,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of LimitRange @@ -1813,10 +1909,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -1864,6 +1956,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -1873,7 +1969,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified LimitRange @@ -1914,6 +2010,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -1923,19 +2025,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a LimitRange /// - /// - /// /// /// name of the LimitRange /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -1975,7 +2077,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedLimitRangeWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedLimitRangeWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified LimitRange @@ -1988,6 +2090,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -1997,7 +2105,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedLimitRangeWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedLimitRangeWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PersistentVolumeClaim @@ -2032,10 +2140,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -2083,6 +2187,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2092,7 +2200,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PersistentVolumeClaim @@ -2102,6 +2210,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2111,7 +2229,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PersistentVolumeClaim @@ -2146,10 +2264,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -2197,6 +2311,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2206,7 +2324,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PersistentVolumeClaim @@ -2247,6 +2365,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -2256,19 +2380,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PersistentVolumeClaim /// - /// - /// /// /// name of the PersistentVolumeClaim /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -2308,7 +2432,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PersistentVolumeClaim @@ -2321,6 +2445,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -2330,7 +2460,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified PersistentVolumeClaim @@ -2363,6 +2493,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -2372,7 +2508,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified PersistentVolumeClaim @@ -2385,6 +2521,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -2394,7 +2536,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Pod @@ -2429,10 +2571,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -2480,6 +2618,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2489,7 +2631,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Pod @@ -2499,6 +2641,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2508,7 +2660,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPodWithHttpMessagesAsync(V1Pod body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPodWithHttpMessagesAsync(V1Pod body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Pod @@ -2543,10 +2695,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -2594,6 +2742,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2603,7 +2755,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Pod @@ -2644,6 +2796,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -2653,19 +2811,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPodWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPodWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Pod /// - /// - /// /// /// name of the Pod /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -2705,7 +2863,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedPodWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedPodWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Pod @@ -2718,6 +2876,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -2727,7 +2891,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPodWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPodWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to attach of Pod @@ -2818,6 +2982,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2827,7 +3001,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPodBindingWithHttpMessagesAsync(V1Binding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPodBindingWithHttpMessagesAsync(V1Binding body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create eviction of a Pod @@ -2840,6 +3014,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2849,7 +3033,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPodEvictionWithHttpMessagesAsync(V1beta1Eviction body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPodEvictionWithHttpMessagesAsync(V1beta1Eviction body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to exec of Pod @@ -3314,6 +3498,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3323,7 +3513,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPodStatusWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPodStatusWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Pod @@ -3336,6 +3526,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3345,7 +3541,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPodStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPodStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodTemplate @@ -3380,10 +3576,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -3431,6 +3623,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3440,7 +3636,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PodTemplate @@ -3450,6 +3646,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3459,7 +3665,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PodTemplate @@ -3494,10 +3700,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -3545,6 +3747,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3554,7 +3760,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PodTemplate @@ -3595,6 +3801,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3604,19 +3816,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PodTemplate /// - /// - /// /// /// name of the PodTemplate /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -3656,7 +3868,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedPodTemplateWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedPodTemplateWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PodTemplate @@ -3669,6 +3881,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3678,7 +3896,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPodTemplateWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPodTemplateWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicationController @@ -3713,10 +3931,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -3764,6 +3978,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3773,7 +3991,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ReplicationController @@ -3783,6 +4001,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3792,7 +4020,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ReplicationController @@ -3827,10 +4055,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -3878,6 +4102,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3887,7 +4115,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ReplicationController @@ -3928,6 +4156,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3937,19 +4171,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ReplicationController /// - /// - /// /// /// name of the ReplicationController /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -3989,7 +4223,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedReplicationControllerWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedReplicationControllerWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ReplicationController @@ -4002,6 +4236,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4011,7 +4251,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicationControllerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicationController @@ -4044,6 +4284,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4053,7 +4299,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified ReplicationController @@ -4066,6 +4312,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4075,7 +4327,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicationController @@ -4108,6 +4360,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4117,7 +4375,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified ReplicationController @@ -4130,6 +4388,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4139,7 +4403,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ResourceQuota @@ -4174,10 +4438,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -4225,6 +4485,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4234,7 +4498,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ResourceQuota @@ -4244,6 +4508,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4253,7 +4527,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ResourceQuota @@ -4288,10 +4562,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -4339,6 +4609,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4348,7 +4622,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ResourceQuota @@ -4389,6 +4663,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4398,19 +4678,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ResourceQuota /// - /// - /// /// /// name of the ResourceQuota /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -4450,7 +4730,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedResourceQuotaWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedResourceQuotaWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ResourceQuota @@ -4463,6 +4743,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4472,7 +4758,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedResourceQuotaWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedResourceQuotaWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ResourceQuota @@ -4505,6 +4791,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4514,7 +4806,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified ResourceQuota @@ -4527,6 +4819,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4536,7 +4834,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Secret @@ -4571,10 +4869,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -4622,6 +4916,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4631,7 +4929,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Secret @@ -4641,6 +4939,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4650,7 +4958,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedSecretWithHttpMessagesAsync(V1Secret body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedSecretWithHttpMessagesAsync(V1Secret body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Secret @@ -4685,10 +4993,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -4736,6 +5040,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4745,7 +5053,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Secret @@ -4786,6 +5094,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4795,19 +5109,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedSecretWithHttpMessagesAsync(V1Secret body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedSecretWithHttpMessagesAsync(V1Secret body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Secret /// - /// - /// /// /// name of the Secret /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -4847,7 +5161,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedSecretWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedSecretWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Secret @@ -4860,6 +5174,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -4869,7 +5189,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedSecretWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedSecretWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ServiceAccount @@ -4904,10 +5224,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -4955,6 +5271,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4964,7 +5284,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ServiceAccount @@ -4974,6 +5294,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4983,7 +5313,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ServiceAccount @@ -5018,10 +5348,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -5069,6 +5395,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -5078,7 +5408,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ServiceAccount @@ -5119,6 +5449,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5128,19 +5464,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ServiceAccount /// - /// - /// /// /// name of the ServiceAccount /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -5180,7 +5516,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedServiceAccountWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedServiceAccountWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ServiceAccount @@ -5193,6 +5529,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5202,7 +5544,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedServiceAccountWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedServiceAccountWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Service @@ -5237,10 +5579,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -5288,6 +5626,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -5297,7 +5639,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedServiceWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedServiceWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Service @@ -5307,6 +5649,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -5316,7 +5668,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedServiceWithHttpMessagesAsync(V1Service body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedServiceWithHttpMessagesAsync(V1Service body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Service @@ -5357,6 +5709,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5366,19 +5724,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedServiceWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedServiceWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Service /// - /// - /// /// /// name of the Service /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -5418,7 +5776,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedServiceWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedServiceWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Service @@ -5431,6 +5789,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5440,7 +5804,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedServiceWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedServiceWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to proxy of Service @@ -5779,6 +6143,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5788,7 +6158,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedServiceStatusWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedServiceStatusWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Service @@ -5801,6 +6171,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5810,7 +6186,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Namespace @@ -5845,6 +6221,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5854,16 +6236,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespaceWithHttpMessagesAsync(V1Namespace body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespaceWithHttpMessagesAsync(V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Namespace /// - /// - /// /// /// name of the Namespace /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -5903,7 +6285,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespaceWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespaceWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Namespace @@ -5913,6 +6295,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5922,7 +6310,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespaceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespaceWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace finalize of the specified Namespace @@ -5932,6 +6320,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5941,7 +6335,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespaceFinalizeWithHttpMessagesAsync(V1Namespace body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespaceFinalizeWithHttpMessagesAsync(V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Namespace @@ -5968,6 +6362,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5977,7 +6377,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespaceStatusWithHttpMessagesAsync(V1Namespace body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespaceStatusWithHttpMessagesAsync(V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Namespace @@ -5987,6 +6387,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5996,7 +6402,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespaceStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespaceStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Node @@ -6028,10 +6434,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -6079,6 +6481,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6088,13 +6494,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Node /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6104,7 +6520,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNodeWithHttpMessagesAsync(V1Node body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNodeWithHttpMessagesAsync(V1Node body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Node @@ -6136,10 +6552,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -6187,6 +6599,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6196,7 +6612,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Node @@ -6231,6 +6647,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6240,16 +6662,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNodeWithHttpMessagesAsync(V1Node body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNodeWithHttpMessagesAsync(V1Node body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Node /// - /// - /// /// /// name of the Node /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -6289,7 +6711,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNodeWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNodeWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Node @@ -6299,6 +6721,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6308,7 +6736,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNodeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNodeWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to proxy of Node @@ -6557,6 +6985,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6566,7 +7000,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNodeStatusWithHttpMessagesAsync(V1Node body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNodeStatusWithHttpMessagesAsync(V1Node body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Node @@ -6576,6 +7010,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6585,7 +7025,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNodeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNodeStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PersistentVolumeClaim @@ -6709,10 +7149,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -6760,6 +7196,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6769,13 +7209,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PersistentVolume /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6785,7 +7235,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreatePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreatePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PersistentVolume @@ -6817,10 +7267,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -6868,6 +7314,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6877,7 +7327,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PersistentVolume @@ -6912,6 +7362,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6921,16 +7377,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplacePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplacePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PersistentVolume /// - /// - /// /// /// name of the PersistentVolume /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -6970,7 +7426,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeletePersistentVolumeWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeletePersistentVolumeWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PersistentVolume @@ -6980,6 +7436,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6989,7 +7451,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchPersistentVolumeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPersistentVolumeWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified PersistentVolume @@ -7016,6 +7478,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -7025,7 +7493,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplacePersistentVolumeStatusWithHttpMessagesAsync(V1PersistentVolume body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplacePersistentVolumeStatusWithHttpMessagesAsync(V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified PersistentVolume @@ -7035,6 +7503,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -7044,7 +7518,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Pod @@ -7753,10 +8227,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -7804,6 +8274,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -7813,13 +8287,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create an InitializerConfiguration /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -7829,7 +8313,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of InitializerConfiguration @@ -7861,10 +8345,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -7912,6 +8392,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -7921,7 +8405,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified InitializerConfiguration @@ -7956,6 +8440,12 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -7965,16 +8455,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete an InitializerConfiguration /// - /// - /// /// /// name of the InitializerConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -8014,7 +8504,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteInitializerConfigurationWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteInitializerConfigurationWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified InitializerConfiguration @@ -8024,6 +8514,12 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8033,7 +8529,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchInitializerConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchInitializerConfigurationWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -8076,10 +8572,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -8127,6 +8619,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8136,13 +8632,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a MutatingWebhookConfiguration /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8152,7 +8658,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of MutatingWebhookConfiguration @@ -8184,10 +8690,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -8235,6 +8737,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8244,7 +8750,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified MutatingWebhookConfiguration @@ -8279,6 +8785,12 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8288,16 +8800,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a MutatingWebhookConfiguration /// - /// - /// /// /// name of the MutatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -8337,7 +8849,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteMutatingWebhookConfigurationWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteMutatingWebhookConfigurationWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified MutatingWebhookConfiguration @@ -8347,6 +8859,12 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8356,7 +8874,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchMutatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchMutatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ValidatingWebhookConfiguration @@ -8388,10 +8906,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -8439,6 +8953,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8448,13 +8966,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ValidatingWebhookConfiguration /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8464,7 +8992,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ValidatingWebhookConfiguration @@ -8496,10 +9024,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -8547,6 +9071,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8556,7 +9084,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ValidatingWebhookConfiguration @@ -8591,6 +9119,12 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8600,16 +9134,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ValidatingWebhookConfiguration /// - /// - /// /// /// name of the ValidatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -8649,7 +9183,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteValidatingWebhookConfigurationWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteValidatingWebhookConfigurationWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ValidatingWebhookConfiguration @@ -8659,6 +9193,12 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8668,7 +9208,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchValidatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchValidatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -8722,10 +9262,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -8773,6 +9309,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8782,13 +9322,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a CustomResourceDefinition /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8798,7 +9348,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of CustomResourceDefinition @@ -8830,10 +9380,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -8881,6 +9427,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8890,7 +9440,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified CustomResourceDefinition @@ -8925,6 +9475,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8934,16 +9490,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a CustomResourceDefinition /// - /// - /// /// /// name of the CustomResourceDefinition /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -8983,7 +9539,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCustomResourceDefinitionWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCustomResourceDefinitionWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified CustomResourceDefinition @@ -8993,6 +9549,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9002,7 +9564,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified CustomResourceDefinition @@ -9029,6 +9591,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9038,7 +9606,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceCustomResourceDefinitionStatusWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceCustomResourceDefinitionStatusWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified CustomResourceDefinition @@ -9048,6 +9616,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9057,7 +9631,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchCustomResourceDefinitionStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchCustomResourceDefinitionStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -9111,10 +9685,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -9162,6 +9732,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9171,13 +9745,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create an APIService /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9187,7 +9771,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateAPIServiceWithHttpMessagesAsync(V1APIService body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateAPIServiceWithHttpMessagesAsync(V1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of APIService @@ -9219,10 +9803,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -9270,6 +9850,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9279,7 +9863,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified APIService @@ -9314,6 +9898,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9323,16 +9913,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceAPIServiceWithHttpMessagesAsync(V1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceAPIServiceWithHttpMessagesAsync(V1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete an APIService /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -9372,7 +9962,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteAPIServiceWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteAPIServiceWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified APIService @@ -9382,6 +9972,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9391,7 +9987,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchAPIServiceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchAPIServiceWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified APIService @@ -9418,6 +10014,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9427,7 +10029,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceAPIServiceStatusWithHttpMessagesAsync(V1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceAPIServiceStatusWithHttpMessagesAsync(V1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified APIService @@ -9437,6 +10039,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9446,7 +10054,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchAPIServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchAPIServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -9489,10 +10097,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -9540,6 +10144,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9549,13 +10157,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create an APIService /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9565,7 +10183,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateAPIService1WithHttpMessagesAsync(V1beta1APIService body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateAPIService1WithHttpMessagesAsync(V1beta1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of APIService @@ -9597,10 +10215,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -9648,6 +10262,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9657,7 +10275,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified APIService @@ -9692,6 +10310,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9701,16 +10325,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceAPIService1WithHttpMessagesAsync(V1beta1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceAPIService1WithHttpMessagesAsync(V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete an APIService /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -9750,7 +10374,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteAPIService1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteAPIService1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified APIService @@ -9760,6 +10384,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9769,7 +10399,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchAPIService1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchAPIService1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified APIService @@ -9796,6 +10426,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9805,7 +10441,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceAPIServiceStatus1WithHttpMessagesAsync(V1beta1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceAPIServiceStatus1WithHttpMessagesAsync(V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified APIService @@ -9815,6 +10451,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9824,7 +10466,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchAPIServiceStatus1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchAPIServiceStatus1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -10157,10 +10799,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -10208,6 +10846,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10217,7 +10859,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ControllerRevision @@ -10227,6 +10869,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10236,7 +10888,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ControllerRevision @@ -10271,10 +10923,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -10322,6 +10970,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10331,7 +10983,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ControllerRevision @@ -10372,6 +11024,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10381,19 +11039,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ControllerRevision /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -10433,7 +11091,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedControllerRevisionWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedControllerRevisionWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ControllerRevision @@ -10446,6 +11104,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10455,7 +11119,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedControllerRevisionWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedControllerRevisionWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind DaemonSet @@ -10490,10 +11154,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -10541,6 +11201,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10550,7 +11214,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a DaemonSet @@ -10560,6 +11224,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10569,7 +11243,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of DaemonSet @@ -10604,10 +11278,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -10655,6 +11325,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10664,7 +11338,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified DaemonSet @@ -10705,6 +11379,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10714,19 +11394,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a DaemonSet /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -10766,7 +11446,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDaemonSetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDaemonSetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified DaemonSet @@ -10779,6 +11459,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10788,7 +11474,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDaemonSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified DaemonSet @@ -10821,6 +11507,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10830,7 +11522,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDaemonSetStatusWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDaemonSetStatusWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified DaemonSet @@ -10843,6 +11535,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10852,7 +11550,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -10887,10 +11585,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -10938,6 +11632,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10947,7 +11645,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Deployment @@ -10957,6 +11655,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10966,7 +11674,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Deployment @@ -11001,10 +11709,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -11052,6 +11756,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11061,7 +11769,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Deployment @@ -11102,6 +11810,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11111,19 +11825,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -11163,7 +11877,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDeploymentWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDeploymentWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Deployment @@ -11176,6 +11890,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11185,7 +11905,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified Deployment @@ -11218,6 +11938,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11227,7 +11953,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified Deployment @@ -11240,6 +11966,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11249,7 +11981,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -11282,6 +12014,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11291,7 +12029,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentStatusWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentStatusWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Deployment @@ -11304,6 +12042,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11313,7 +12057,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -11348,10 +12092,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -11399,6 +12139,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11408,7 +12152,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ReplicaSet @@ -11418,6 +12162,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11427,7 +12181,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ReplicaSet @@ -11462,10 +12216,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -11513,6 +12263,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11522,7 +12276,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ReplicaSet @@ -11563,6 +12317,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11572,19 +12332,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ReplicaSet /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -11624,7 +12384,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedReplicaSetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedReplicaSetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ReplicaSet @@ -11637,6 +12397,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11646,7 +12412,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicaSet @@ -11679,6 +12445,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11688,7 +12460,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified ReplicaSet @@ -11701,6 +12473,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11710,7 +12488,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicaSet @@ -11743,6 +12521,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11752,7 +12536,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetStatusWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetStatusWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified ReplicaSet @@ -11765,6 +12549,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11774,7 +12564,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -11809,10 +12599,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -11860,6 +12646,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11869,7 +12659,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a StatefulSet @@ -11879,6 +12669,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11888,7 +12688,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of StatefulSet @@ -11923,10 +12723,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -11974,6 +12770,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11983,7 +12783,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified StatefulSet @@ -12024,6 +12824,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12033,19 +12839,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a StatefulSet /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -12085,7 +12891,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedStatefulSetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedStatefulSetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified StatefulSet @@ -12098,6 +12904,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12107,7 +12919,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified StatefulSet @@ -12140,6 +12952,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12149,7 +12967,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified StatefulSet @@ -12162,6 +12980,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12171,7 +12995,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified StatefulSet @@ -12204,6 +13028,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12213,7 +13043,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetStatusWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetStatusWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified StatefulSet @@ -12226,6 +13056,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12235,7 +13071,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -12649,10 +13485,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -12700,6 +13532,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -12709,7 +13545,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ControllerRevision @@ -12719,6 +13555,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -12728,7 +13574,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ControllerRevision @@ -12763,10 +13609,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -12814,6 +13656,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -12823,7 +13669,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ControllerRevision @@ -12864,6 +13710,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12873,19 +13725,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ControllerRevision /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -12925,7 +13777,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedControllerRevision1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedControllerRevision1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ControllerRevision @@ -12938,6 +13790,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12947,7 +13805,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedControllerRevision1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedControllerRevision1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -12982,10 +13840,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -13033,6 +13887,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13042,7 +13900,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Deployment @@ -13052,6 +13910,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13061,7 +13929,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Deployment @@ -13096,10 +13964,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -13147,6 +14011,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13156,7 +14024,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Deployment @@ -13197,6 +14065,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13206,19 +14080,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -13258,7 +14132,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDeployment1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDeployment1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Deployment @@ -13271,6 +14145,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13280,7 +14160,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeployment1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeployment1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create rollback of a Deployment @@ -13293,6 +14173,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13302,7 +14192,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDeploymentRollbackWithHttpMessagesAsync(Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDeploymentRollbackWithHttpMessagesAsync(Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified Deployment @@ -13335,6 +14225,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13344,7 +14240,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified Deployment @@ -13357,6 +14253,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13366,7 +14268,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -13399,6 +14301,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13408,7 +14316,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentStatus1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentStatus1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Deployment @@ -13421,6 +14329,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13430,7 +14344,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -13465,10 +14379,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -13516,6 +14426,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13525,7 +14439,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a StatefulSet @@ -13535,6 +14449,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13544,7 +14468,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of StatefulSet @@ -13579,10 +14503,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -13630,6 +14550,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -13639,7 +14563,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified StatefulSet @@ -13680,6 +14604,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13689,19 +14619,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a StatefulSet /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -13741,7 +14671,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedStatefulSet1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedStatefulSet1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified StatefulSet @@ -13754,6 +14684,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13763,7 +14699,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified StatefulSet @@ -13796,6 +14732,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13805,7 +14747,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified StatefulSet @@ -13818,6 +14760,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13827,7 +14775,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified StatefulSet @@ -13860,6 +14808,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13869,7 +14823,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified StatefulSet @@ -13882,6 +14836,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -13891,7 +14851,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -14305,10 +15265,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -14356,6 +15312,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -14365,7 +15325,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ControllerRevision @@ -14375,6 +15335,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -14384,7 +15354,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ControllerRevision @@ -14419,10 +15389,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -14470,6 +15436,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -14479,7 +15449,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ControllerRevision @@ -14520,6 +15490,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -14529,19 +15505,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ControllerRevision /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -14581,7 +15557,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedControllerRevision2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedControllerRevision2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ControllerRevision @@ -14594,6 +15570,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -14603,7 +15585,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedControllerRevision2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedControllerRevision2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind DaemonSet @@ -14638,10 +15620,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -14689,6 +15667,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -14698,7 +15680,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a DaemonSet @@ -14708,6 +15690,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -14717,7 +15709,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of DaemonSet @@ -14752,10 +15744,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -14803,6 +15791,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -14812,7 +15804,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified DaemonSet @@ -14853,6 +15845,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -14862,19 +15860,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a DaemonSet /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -14914,7 +15912,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDaemonSet1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDaemonSet1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified DaemonSet @@ -14927,6 +15925,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -14936,7 +15940,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDaemonSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified DaemonSet @@ -14969,6 +15973,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -14978,7 +15988,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified DaemonSet @@ -14991,6 +16001,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15000,7 +16016,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -15035,10 +16051,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -15086,6 +16098,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -15095,7 +16111,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Deployment @@ -15105,6 +16121,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -15114,7 +16140,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Deployment @@ -15149,10 +16175,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -15200,6 +16222,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -15209,7 +16235,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Deployment @@ -15250,6 +16276,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15259,19 +16291,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -15311,7 +16343,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDeployment2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDeployment2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Deployment @@ -15324,6 +16356,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15333,7 +16371,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeployment2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeployment2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified Deployment @@ -15366,6 +16404,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15375,7 +16419,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified Deployment @@ -15388,6 +16432,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15397,7 +16447,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -15430,6 +16480,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15439,7 +16495,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentStatus2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentStatus2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Deployment @@ -15452,6 +16508,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15461,7 +16523,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -15496,10 +16558,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -15547,6 +16605,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -15556,7 +16618,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ReplicaSet @@ -15566,6 +16628,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -15575,7 +16647,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ReplicaSet @@ -15610,10 +16682,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -15661,6 +16729,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -15670,7 +16742,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ReplicaSet @@ -15711,6 +16783,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15720,19 +16798,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ReplicaSet /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -15772,7 +16850,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedReplicaSet1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedReplicaSet1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ReplicaSet @@ -15785,6 +16863,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15794,7 +16878,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicaSet @@ -15827,6 +16911,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15836,7 +16926,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetScale1WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetScale1WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified ReplicaSet @@ -15849,6 +16939,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15858,7 +16954,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicaSet @@ -15891,6 +16987,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15900,7 +17002,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified ReplicaSet @@ -15913,6 +17015,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -15922,7 +17030,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -15957,10 +17065,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -16008,6 +17112,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -16017,7 +17125,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a StatefulSet @@ -16027,6 +17135,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -16036,7 +17154,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of StatefulSet @@ -16071,10 +17189,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -16122,6 +17236,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -16131,7 +17249,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified StatefulSet @@ -16172,6 +17290,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16181,19 +17305,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a StatefulSet /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -16233,7 +17357,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedStatefulSet2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedStatefulSet2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified StatefulSet @@ -16246,6 +17370,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16255,7 +17385,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified StatefulSet @@ -16288,6 +17418,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16297,7 +17433,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified StatefulSet @@ -16310,6 +17446,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16319,7 +17461,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified StatefulSet @@ -16352,6 +17494,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16361,7 +17509,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified StatefulSet @@ -16374,6 +17522,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16383,7 +17537,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -16592,9 +17746,85 @@ namespace k8s Task> GetAPIResources9WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// create a TokenReview + /// list or watch objects of kind AuditSink /// - /// + /// + /// The continue option should be set when retrieving more results from + /// the server. Since this value is server defined, clients may only + /// use the continue value from a previous query result with identical + /// query parameters (except for the value of continue) and the server + /// may reject a continue value it does not recognize. If the specified + /// continue value is no longer valid whether due to expiration + /// (generally five to fifteen minutes) or a configuration change on + /// the server, the server will respond with a 410 ResourceExpired + /// error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue + /// field. Otherwise, the client may send another list request with the + /// token received with the 410 error, the server will respond with a + /// list starting from the next key, but from the latest snapshot, + /// which is inconsistent from the previous list results - objects that + /// are created, modified, or deleted after the first list request will + /// be included in the response, as long as their keys are after the + /// "next key". + /// + /// This field is not supported when watch is true. Clients may start a + /// watch from the last resourceVersion value returned by the server + /// and not miss any modifications. + /// + /// + /// A selector to restrict the list of returned objects by their + /// fields. Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their + /// labels. Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. + /// If more items exist, the server will set the `continue` field on + /// the list metadata to a value that can be used with the same initial + /// query to retrieve the next set of results. Setting a limit may + /// return fewer than the requested amount of items (up to zero items) + /// in the event all requested objects are filtered out and clients + /// should only use the presence of the continue field to determine + /// whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available + /// results. If limit is specified and the continue field is empty, + /// clients may assume that no more results are available. This field + /// is not supported if watch is true. + /// + /// The server guarantees that the objects returned when using continue + /// will be identical to issuing a single list call without a limit - + /// that is, no objects created, modified, or deleted after the first + /// request is issued will be included in any subsequent continued + /// requests. This is sometimes referred to as a consistent snapshot, + /// and ensures that a client that is using limit to receive smaller + /// chunks of a very large result can ensure they see all possible + /// objects. If objects are updated during a chunked list the version + /// of the object that was present at the time the first list result + /// was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after + /// that particular version of a resource. Defaults to changes from the + /// beginning of history. When specified for list: - if unset, then the + /// result is returned from remote storage based on quorum-read flag; - + /// if it's 0, then we simply return what we currently have in cache, + /// no guarantee; - if set to non zero, then the result is at least as + /// fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the + /// call, regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the + /// response. /// /// /// If 'true', then the output is pretty printed. @@ -16605,24 +17835,23 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateTokenReviewWithHttpMessagesAsync(V1TokenReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListAuditSinkWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// get available resources - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetAPIResources10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a TokenReview + /// create an AuditSink /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -16632,7 +17861,223 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateTokenReview1WithHttpMessagesAsync(V1beta1TokenReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateAuditSinkWithHttpMessagesAsync(V1alpha1AuditSink body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// delete collection of AuditSink + /// + /// + /// The continue option should be set when retrieving more results from + /// the server. Since this value is server defined, clients may only + /// use the continue value from a previous query result with identical + /// query parameters (except for the value of continue) and the server + /// may reject a continue value it does not recognize. If the specified + /// continue value is no longer valid whether due to expiration + /// (generally five to fifteen minutes) or a configuration change on + /// the server, the server will respond with a 410 ResourceExpired + /// error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue + /// field. Otherwise, the client may send another list request with the + /// token received with the 410 error, the server will respond with a + /// list starting from the next key, but from the latest snapshot, + /// which is inconsistent from the previous list results - objects that + /// are created, modified, or deleted after the first list request will + /// be included in the response, as long as their keys are after the + /// "next key". + /// + /// This field is not supported when watch is true. Clients may start a + /// watch from the last resourceVersion value returned by the server + /// and not miss any modifications. + /// + /// + /// A selector to restrict the list of returned objects by their + /// fields. Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their + /// labels. Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. + /// If more items exist, the server will set the `continue` field on + /// the list metadata to a value that can be used with the same initial + /// query to retrieve the next set of results. Setting a limit may + /// return fewer than the requested amount of items (up to zero items) + /// in the event all requested objects are filtered out and clients + /// should only use the presence of the continue field to determine + /// whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available + /// results. If limit is specified and the continue field is empty, + /// clients may assume that no more results are available. This field + /// is not supported if watch is true. + /// + /// The server guarantees that the objects returned when using continue + /// will be identical to issuing a single list call without a limit - + /// that is, no objects created, modified, or deleted after the first + /// request is issued will be included in any subsequent continued + /// requests. This is sometimes referred to as a consistent snapshot, + /// and ensures that a client that is using limit to receive smaller + /// chunks of a very large result can ensure they see all possible + /// objects. If objects are updated during a chunked list the version + /// of the object that was present at the time the first list result + /// was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after + /// that particular version of a resource. Defaults to changes from the + /// beginning of history. When specified for list: - if unset, then the + /// result is returned from remote storage based on quorum-read flag; - + /// if it's 0, then we simply return what we currently have in cache, + /// no guarantee; - if set to non zero, then the result is at least as + /// fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the + /// call, regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeleteCollectionAuditSinkWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// read the specified AuditSink + /// + /// + /// name of the AuditSink + /// + /// + /// Should the export be exact. Exact export maintains + /// cluster-specific fields like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user + /// can not specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReadAuditSinkWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// replace the specified AuditSink + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReplaceAuditSinkWithHttpMessagesAsync(V1alpha1AuditSink body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// delete an AuditSink + /// + /// + /// name of the AuditSink + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// 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. + /// Acceptable values are: 'Orphan' - orphan the dependents; + /// 'Background' - allow the garbage collector to delete the dependents + /// in the background; 'Foreground' - a cascading policy that deletes + /// all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeleteAuditSinkWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// partially update the specified AuditSink + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> PatchAuditSinkWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -16654,15 +18099,22 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// create a LocalSubjectAccessReview + /// create a TokenReview /// /// /// - /// - /// object name and auth scope, such as for teams and projects + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. /// /// /// If 'true', then the output is pretty printed. @@ -16673,55 +18125,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedLocalSubjectAccessReviewWithHttpMessagesAsync(V1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a SelfSubjectAccessReview - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateSelfSubjectAccessReviewWithHttpMessagesAsync(V1SelfSubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a SelfSubjectRulesReview - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateSelfSubjectRulesReviewWithHttpMessagesAsync(V1SelfSubjectRulesReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a SubjectAccessReview - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateSubjectAccessReviewWithHttpMessagesAsync(V1SubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateTokenReviewWithHttpMessagesAsync(V1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -16732,15 +18136,22 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// create a LocalSubjectAccessReview + /// create a TokenReview /// /// /// - /// - /// object name and auth scope, such as for teams and projects + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. /// /// /// If 'true', then the output is pretty printed. @@ -16751,55 +18162,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedLocalSubjectAccessReview1WithHttpMessagesAsync(V1beta1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a SelfSubjectAccessReview - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateSelfSubjectAccessReview1WithHttpMessagesAsync(V1beta1SelfSubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a SelfSubjectRulesReview - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateSelfSubjectRulesReview1WithHttpMessagesAsync(V1beta1SelfSubjectRulesReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a SubjectAccessReview - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateSubjectAccessReview1WithHttpMessagesAsync(V1beta1SubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateTokenReview1WithHttpMessagesAsync(V1beta1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -16812,6 +18175,124 @@ namespace k8s /// Task> GetAPIGroup6WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// get available resources + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetAPIResources12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a LocalSubjectAccessReview + /// + /// + /// + /// + /// object name and auth scope, such as for teams and projects + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateNamespacedLocalSubjectAccessReviewWithHttpMessagesAsync(V1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a SelfSubjectAccessReview + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateSelfSubjectAccessReviewWithHttpMessagesAsync(V1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a SelfSubjectRulesReview + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateSelfSubjectRulesReviewWithHttpMessagesAsync(V1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a SubjectAccessReview + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateSubjectAccessReviewWithHttpMessagesAsync(V1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// get available resources /// @@ -16823,6 +18304,135 @@ namespace k8s /// Task> GetAPIResources13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// create a LocalSubjectAccessReview + /// + /// + /// + /// + /// object name and auth scope, such as for teams and projects + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateNamespacedLocalSubjectAccessReview1WithHttpMessagesAsync(V1beta1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a SelfSubjectAccessReview + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateSelfSubjectAccessReview1WithHttpMessagesAsync(V1beta1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a SelfSubjectRulesReview + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateSelfSubjectRulesReview1WithHttpMessagesAsync(V1beta1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a SubjectAccessReview + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateSubjectAccessReview1WithHttpMessagesAsync(V1beta1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// get information of a group + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetAPIGroup7WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// get available resources + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetAPIResources14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// list or watch objects of kind HorizontalPodAutoscaler /// @@ -16948,10 +18558,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -16999,6 +18605,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17008,7 +18618,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a HorizontalPodAutoscaler @@ -17018,6 +18628,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17027,7 +18647,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of HorizontalPodAutoscaler @@ -17062,10 +18682,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -17113,6 +18729,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17122,7 +18742,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified HorizontalPodAutoscaler @@ -17163,6 +18783,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17172,19 +18798,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a HorizontalPodAutoscaler /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -17224,7 +18850,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified HorizontalPodAutoscaler @@ -17237,6 +18863,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17246,7 +18878,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified HorizontalPodAutoscaler @@ -17279,6 +18911,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17288,7 +18926,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified HorizontalPodAutoscaler @@ -17301,6 +18939,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17310,7 +18954,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -17321,7 +18965,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind HorizontalPodAutoscaler @@ -17448,10 +19092,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -17499,6 +19139,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17508,7 +19152,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a HorizontalPodAutoscaler @@ -17518,6 +19162,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17527,7 +19181,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of HorizontalPodAutoscaler @@ -17562,10 +19216,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -17613,6 +19263,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17622,7 +19276,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified HorizontalPodAutoscaler @@ -17663,6 +19317,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17672,19 +19332,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a HorizontalPodAutoscaler /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -17724,7 +19384,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified HorizontalPodAutoscaler @@ -17737,6 +19397,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17746,7 +19412,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified HorizontalPodAutoscaler @@ -17779,6 +19445,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17788,7 +19460,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified HorizontalPodAutoscaler @@ -17801,6 +19473,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17810,7 +19488,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -17821,7 +19499,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind HorizontalPodAutoscaler @@ -17948,10 +19626,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -17999,6 +19673,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18008,7 +19686,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a HorizontalPodAutoscaler @@ -18018,6 +19696,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18027,7 +19715,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of HorizontalPodAutoscaler @@ -18062,10 +19750,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -18113,6 +19797,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18122,7 +19810,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified HorizontalPodAutoscaler @@ -18163,6 +19851,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18172,19 +19866,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a HorizontalPodAutoscaler /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -18224,7 +19918,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified HorizontalPodAutoscaler @@ -18237,6 +19931,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18246,7 +19946,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified HorizontalPodAutoscaler @@ -18279,6 +19979,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18288,7 +19994,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified HorizontalPodAutoscaler @@ -18301,6 +20007,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18310,7 +20022,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -18321,7 +20033,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup7WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup8WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -18332,7 +20044,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Job @@ -18459,10 +20171,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -18510,6 +20218,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18519,7 +20231,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Job @@ -18529,6 +20241,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18538,7 +20260,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedJobWithHttpMessagesAsync(V1Job body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedJobWithHttpMessagesAsync(V1Job body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Job @@ -18573,10 +20295,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -18624,6 +20342,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18633,7 +20355,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Job @@ -18674,6 +20396,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18683,19 +20411,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedJobWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedJobWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Job /// - /// - /// /// /// name of the Job /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -18735,7 +20463,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedJobWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedJobWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Job @@ -18748,6 +20476,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18757,7 +20491,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Job @@ -18790,6 +20524,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18799,7 +20539,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedJobStatusWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedJobStatusWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Job @@ -18812,6 +20552,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18821,7 +20567,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -18832,7 +20578,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources18WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind CronJob @@ -18959,10 +20705,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -19010,6 +20752,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19019,7 +20765,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a CronJob @@ -19029,6 +20775,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19038,7 +20794,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of CronJob @@ -19073,10 +20829,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -19124,6 +20876,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19133,7 +20889,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified CronJob @@ -19174,6 +20930,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19183,19 +20945,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a CronJob /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -19235,7 +20997,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedCronJobWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedCronJobWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified CronJob @@ -19248,6 +21010,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19257,7 +21025,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedCronJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedCronJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified CronJob @@ -19290,6 +21058,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19299,7 +21073,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedCronJobStatusWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedCronJobStatusWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified CronJob @@ -19312,6 +21086,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19321,7 +21101,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedCronJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedCronJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -19332,7 +21112,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources18WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources19WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind CronJob @@ -19459,10 +21239,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -19510,6 +21286,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19519,7 +21299,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a CronJob @@ -19529,6 +21309,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19538,7 +21328,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of CronJob @@ -19573,10 +21363,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -19624,6 +21410,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19633,7 +21423,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified CronJob @@ -19674,6 +21464,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19683,19 +21479,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a CronJob /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -19735,7 +21531,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedCronJob1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedCronJob1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified CronJob @@ -19748,6 +21544,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19757,7 +21559,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedCronJob1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedCronJob1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified CronJob @@ -19790,6 +21592,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19799,7 +21607,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedCronJobStatus1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedCronJobStatus1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified CronJob @@ -19812,6 +21620,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19821,7 +21635,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedCronJobStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedCronJobStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -19832,7 +21646,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup8WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup9WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -19843,7 +21657,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources19WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources20WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind CertificateSigningRequest @@ -19875,10 +21689,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -19926,6 +21736,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19935,13 +21749,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a CertificateSigningRequest /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -19951,7 +21775,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of CertificateSigningRequest @@ -19983,10 +21807,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -20034,6 +21854,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20043,7 +21867,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified CertificateSigningRequest @@ -20078,6 +21902,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20087,16 +21917,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a CertificateSigningRequest /// - /// - /// /// /// name of the CertificateSigningRequest /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -20136,7 +21966,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCertificateSigningRequestWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCertificateSigningRequestWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified CertificateSigningRequest @@ -20146,6 +21976,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20155,7 +21991,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchCertificateSigningRequestWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchCertificateSigningRequestWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace approval of the specified CertificateSigningRequest @@ -20165,6 +22001,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20174,7 +22016,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceCertificateSigningRequestApprovalWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceCertificateSigningRequestApprovalWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified CertificateSigningRequest @@ -20201,6 +22043,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20210,7 +22058,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceCertificateSigningRequestStatusWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceCertificateSigningRequestStatusWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified CertificateSigningRequest @@ -20220,6 +22068,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20229,7 +22083,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchCertificateSigningRequestStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchCertificateSigningRequestStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -20240,7 +22094,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup9WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -20251,7 +22105,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources20WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources21WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Lease @@ -20378,10 +22232,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -20429,6 +22279,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20438,7 +22292,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Lease @@ -20448,6 +22302,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20457,7 +22321,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Lease @@ -20492,10 +22356,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -20543,6 +22403,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20552,7 +22416,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Lease @@ -20593,6 +22457,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20602,19 +22472,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Lease /// - /// - /// /// /// name of the Lease /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -20654,7 +22524,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedLeaseWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedLeaseWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Lease @@ -20667,6 +22537,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20676,7 +22552,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedLeaseWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedLeaseWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -20687,7 +22563,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -20698,7 +22574,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources21WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources22WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Event @@ -20825,10 +22701,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -20876,6 +22748,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20885,7 +22761,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create an Event @@ -20895,6 +22771,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20904,7 +22790,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Event @@ -20939,10 +22825,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -20990,6 +22872,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20999,7 +22885,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Event @@ -21040,6 +22926,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21049,19 +22941,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete an Event /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -21101,7 +22993,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedEvent1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedEvent1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Event @@ -21114,6 +23006,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21123,7 +23021,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedEvent1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedEvent1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -21134,7 +23032,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -21145,7 +23043,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources22WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources23WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind DaemonSet @@ -21456,10 +23354,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -21507,6 +23401,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21516,7 +23414,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a DaemonSet @@ -21526,6 +23424,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21535,7 +23443,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of DaemonSet @@ -21570,10 +23478,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -21621,6 +23525,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21630,7 +23538,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified DaemonSet @@ -21671,6 +23579,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21680,19 +23594,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a DaemonSet /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -21732,7 +23646,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDaemonSet2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDaemonSet2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified DaemonSet @@ -21745,6 +23659,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21754,7 +23674,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDaemonSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified DaemonSet @@ -21787,6 +23707,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21796,7 +23722,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified DaemonSet @@ -21809,6 +23735,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21818,7 +23750,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -21853,10 +23785,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -21904,6 +23832,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21913,7 +23845,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Deployment @@ -21923,6 +23855,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21932,7 +23874,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Deployment @@ -21967,10 +23909,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -22018,6 +23956,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22027,7 +23969,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Deployment @@ -22068,6 +24010,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22077,19 +24025,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -22129,7 +24077,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedDeployment3WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedDeployment3WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Deployment @@ -22142,6 +24090,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22151,7 +24105,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeployment3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeployment3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create rollback of a Deployment @@ -22164,6 +24118,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned + /// without completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22173,7 +24137,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedDeploymentRollback1WithHttpMessagesAsync(Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedDeploymentRollback1WithHttpMessagesAsync(Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified Deployment @@ -22206,6 +24170,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22215,7 +24185,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentScale3WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentScale3WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified Deployment @@ -22228,6 +24198,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22237,7 +24213,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScale3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentScale3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -22270,6 +24246,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22279,7 +24261,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedDeploymentStatus3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedDeploymentStatus3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Deployment @@ -22292,6 +24274,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22301,7 +24289,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatus3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedDeploymentStatus3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Ingress @@ -22336,10 +24324,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -22387,6 +24371,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22396,7 +24384,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create an Ingress @@ -22406,6 +24394,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22415,7 +24413,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Ingress @@ -22450,10 +24448,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -22501,6 +24495,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22510,7 +24508,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Ingress @@ -22551,6 +24549,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22560,19 +24564,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete an Ingress /// - /// - /// /// /// name of the Ingress /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -22612,7 +24616,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedIngressWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedIngressWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Ingress @@ -22625,6 +24629,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22634,7 +24644,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedIngressWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedIngressWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Ingress @@ -22667,6 +24677,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22676,7 +24692,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedIngressStatusWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedIngressStatusWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified Ingress @@ -22689,6 +24705,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22698,7 +24720,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedIngressStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedIngressStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -22733,10 +24755,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -22784,6 +24802,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22793,7 +24815,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a NetworkPolicy @@ -22803,6 +24825,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22812,7 +24844,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of NetworkPolicy @@ -22847,10 +24879,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -22898,6 +24926,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22907,7 +24939,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified NetworkPolicy @@ -22948,6 +24980,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22957,19 +24995,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a NetworkPolicy /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -23009,7 +25047,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedNetworkPolicyWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedNetworkPolicyWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified NetworkPolicy @@ -23022,6 +25060,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23031,7 +25075,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedNetworkPolicyWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedNetworkPolicyWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -23066,10 +25110,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -23117,6 +25157,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23126,7 +25170,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ReplicaSet @@ -23136,6 +25180,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23145,7 +25199,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ReplicaSet @@ -23180,10 +25234,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -23231,6 +25281,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23240,7 +25294,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ReplicaSet @@ -23281,6 +25335,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23290,19 +25350,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ReplicaSet /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -23342,7 +25402,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedReplicaSet2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedReplicaSet2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ReplicaSet @@ -23355,6 +25415,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23364,7 +25430,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicaSet @@ -23397,6 +25463,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23406,7 +25478,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetScale2WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetScale2WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified ReplicaSet @@ -23419,6 +25491,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23428,7 +25506,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicaSet @@ -23461,6 +25539,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23470,7 +25554,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified ReplicaSet @@ -23483,6 +25567,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23492,7 +25582,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicationControllerDummy @@ -23525,6 +25615,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23534,7 +25630,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update scale of the specified ReplicationControllerDummy @@ -23547,6 +25643,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23556,7 +25658,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -23680,10 +25782,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -23731,6 +25829,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23740,13 +25842,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PodSecurityPolicy /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23756,7 +25868,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreatePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreatePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PodSecurityPolicy @@ -23788,10 +25900,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -23839,6 +25947,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23848,7 +25960,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PodSecurityPolicy @@ -23883,6 +25995,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23892,16 +26010,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplacePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplacePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PodSecurityPolicy /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -23941,7 +26059,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeletePodSecurityPolicyWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeletePodSecurityPolicyWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PodSecurityPolicy @@ -23951,6 +26069,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23960,7 +26084,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchPodSecurityPolicyWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPodSecurityPolicyWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -24063,7 +26187,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -24074,7 +26198,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources23WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources24WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -24109,10 +26233,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -24160,6 +26280,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24169,7 +26293,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a NetworkPolicy @@ -24179,6 +26303,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24188,7 +26322,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of NetworkPolicy @@ -24223,10 +26357,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -24274,6 +26404,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24283,7 +26417,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified NetworkPolicy @@ -24324,6 +26458,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24333,19 +26473,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a NetworkPolicy /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -24385,7 +26525,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedNetworkPolicy1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedNetworkPolicy1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified NetworkPolicy @@ -24398,6 +26538,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24407,7 +26553,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -24510,7 +26656,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -24521,7 +26667,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources24WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources25WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodDisruptionBudget @@ -24556,10 +26702,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -24607,6 +26749,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24616,7 +26762,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PodDisruptionBudget @@ -24626,6 +26772,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24635,7 +26791,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PodDisruptionBudget @@ -24670,10 +26826,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -24721,6 +26873,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24730,7 +26886,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PodDisruptionBudget @@ -24771,6 +26927,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24780,19 +26942,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PodDisruptionBudget /// - /// - /// /// /// name of the PodDisruptionBudget /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -24832,7 +26994,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PodDisruptionBudget @@ -24845,6 +27007,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24854,7 +27022,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified PodDisruptionBudget @@ -24887,6 +27055,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24896,7 +27070,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update status of the specified PodDisruptionBudget @@ -24909,6 +27083,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24918,7 +27098,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodDisruptionBudget @@ -25042,10 +27222,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -25093,6 +27269,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25102,13 +27282,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PodSecurityPolicy /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25118,7 +27308,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreatePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreatePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PodSecurityPolicy @@ -25150,10 +27340,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -25201,6 +27387,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25210,7 +27400,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PodSecurityPolicy @@ -25245,6 +27435,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25254,16 +27450,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplacePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplacePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PodSecurityPolicy /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -25303,7 +27499,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeletePodSecurityPolicy1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeletePodSecurityPolicy1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PodSecurityPolicy @@ -25313,6 +27509,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25322,7 +27524,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchPodSecurityPolicy1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPodSecurityPolicy1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -25333,7 +27535,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -25344,7 +27546,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources25WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources26WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRoleBinding @@ -25376,10 +27578,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -25427,6 +27625,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25436,13 +27638,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ClusterRoleBinding /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25452,7 +27664,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ClusterRoleBinding @@ -25484,10 +27696,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -25535,6 +27743,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25544,7 +27756,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ClusterRoleBinding @@ -25571,6 +27783,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25580,16 +27798,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ClusterRoleBinding /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -25629,7 +27847,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteClusterRoleBindingWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteClusterRoleBindingWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ClusterRoleBinding @@ -25639,6 +27857,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25648,7 +27872,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchClusterRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRole @@ -25680,10 +27904,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -25731,6 +27951,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25740,13 +27964,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ClusterRole /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25756,7 +27990,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ClusterRole @@ -25788,10 +28022,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -25839,6 +28069,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25848,7 +28082,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ClusterRole @@ -25875,6 +28109,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25884,16 +28124,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ClusterRole /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -25933,7 +28173,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteClusterRoleWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteClusterRoleWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ClusterRole @@ -25943,6 +28183,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25952,7 +28198,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchClusterRoleWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -25987,10 +28233,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -26038,6 +28280,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26047,7 +28293,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a RoleBinding @@ -26057,6 +28303,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26066,7 +28322,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of RoleBinding @@ -26101,10 +28357,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -26152,6 +28404,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26161,7 +28417,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified RoleBinding @@ -26194,6 +28450,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -26203,19 +28465,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a RoleBinding /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -26255,7 +28517,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedRoleBindingWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedRoleBindingWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified RoleBinding @@ -26268,6 +28530,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -26277,7 +28545,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Role @@ -26312,10 +28580,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -26363,6 +28627,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26372,7 +28640,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Role @@ -26382,6 +28650,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26391,7 +28669,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedRoleWithHttpMessagesAsync(V1Role body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedRoleWithHttpMessagesAsync(V1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Role @@ -26426,10 +28704,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -26477,6 +28751,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26486,7 +28764,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Role @@ -26519,6 +28797,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -26528,19 +28812,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedRoleWithHttpMessagesAsync(V1Role body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedRoleWithHttpMessagesAsync(V1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Role /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -26580,7 +28864,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedRoleWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedRoleWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Role @@ -26593,6 +28877,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -26602,7 +28892,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedRoleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedRoleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -26797,7 +29087,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources26WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources27WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRoleBinding @@ -26829,10 +29119,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -26880,6 +29166,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26889,13 +29179,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ClusterRoleBinding /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26905,7 +29205,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ClusterRoleBinding @@ -26937,10 +29237,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -26988,6 +29284,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26997,7 +29297,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ClusterRoleBinding @@ -27024,6 +29324,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27033,16 +29339,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ClusterRoleBinding /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -27082,7 +29388,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteClusterRoleBinding1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteClusterRoleBinding1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ClusterRoleBinding @@ -27092,6 +29398,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27101,7 +29413,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchClusterRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRole @@ -27133,10 +29445,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -27184,6 +29492,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27193,13 +29505,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ClusterRole /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27209,7 +29531,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ClusterRole @@ -27241,10 +29563,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -27292,6 +29610,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27301,7 +29623,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ClusterRole @@ -27328,6 +29650,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27337,16 +29665,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ClusterRole /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -27386,7 +29714,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteClusterRole1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteClusterRole1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ClusterRole @@ -27396,6 +29724,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27405,7 +29739,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchClusterRole1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRole1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -27440,10 +29774,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -27491,6 +29821,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27500,7 +29834,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a RoleBinding @@ -27510,6 +29844,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27519,7 +29863,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of RoleBinding @@ -27554,10 +29898,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -27605,6 +29945,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27614,7 +29958,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified RoleBinding @@ -27647,6 +29991,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27656,19 +30006,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a RoleBinding /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -27708,7 +30058,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedRoleBinding1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedRoleBinding1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified RoleBinding @@ -27721,6 +30071,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27730,7 +30086,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Role @@ -27765,10 +30121,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -27816,6 +30168,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27825,7 +30181,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Role @@ -27835,6 +30191,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27844,7 +30210,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Role @@ -27879,10 +30245,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -27930,6 +30292,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -27939,7 +30305,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Role @@ -27972,6 +30338,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27981,19 +30353,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Role /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -28033,7 +30405,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedRole1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedRole1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Role @@ -28046,6 +30418,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -28055,7 +30433,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedRole1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedRole1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -28250,7 +30628,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources27WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources28WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRoleBinding @@ -28282,10 +30660,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -28333,6 +30707,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28342,13 +30720,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ClusterRoleBinding /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28358,7 +30746,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ClusterRoleBinding @@ -28390,10 +30778,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -28441,6 +30825,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28450,7 +30838,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ClusterRoleBinding @@ -28477,6 +30865,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -28486,16 +30880,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ClusterRoleBinding /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -28535,7 +30929,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteClusterRoleBinding2WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteClusterRoleBinding2WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ClusterRoleBinding @@ -28545,6 +30939,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -28554,7 +30954,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchClusterRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRole @@ -28586,10 +30986,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -28637,6 +31033,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28646,13 +31046,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a ClusterRole /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28662,7 +31072,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of ClusterRole @@ -28694,10 +31104,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -28745,6 +31151,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28754,7 +31164,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified ClusterRole @@ -28781,6 +31191,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -28790,16 +31206,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a ClusterRole /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -28839,7 +31255,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteClusterRole2WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteClusterRole2WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified ClusterRole @@ -28849,6 +31265,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -28858,7 +31280,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchClusterRole2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRole2WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -28893,10 +31315,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -28944,6 +31362,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28953,7 +31375,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a RoleBinding @@ -28963,6 +31385,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -28972,7 +31404,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of RoleBinding @@ -29007,10 +31439,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -29058,6 +31486,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -29067,7 +31499,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified RoleBinding @@ -29100,6 +31532,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -29109,19 +31547,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a RoleBinding /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -29161,7 +31599,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedRoleBinding2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedRoleBinding2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified RoleBinding @@ -29174,6 +31612,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -29183,7 +31627,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Role @@ -29218,10 +31662,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -29269,6 +31709,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -29278,7 +31722,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a Role @@ -29288,6 +31732,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -29297,7 +31751,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of Role @@ -29332,10 +31786,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -29383,6 +31833,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -29392,7 +31846,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Role @@ -29425,6 +31879,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -29434,19 +31894,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a Role /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -29486,7 +31946,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedRole2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedRole2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified Role @@ -29499,6 +31959,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -29508,7 +31974,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedRole2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedRole2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -29703,330 +32169,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// get available resources - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetAPIResources28WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// list or watch objects of kind PriorityClass - /// - /// - /// The continue option should be set when retrieving more results from - /// the server. Since this value is server defined, clients may only - /// use the continue value from a previous query result with identical - /// query parameters (except for the value of continue) and the server - /// may reject a continue value it does not recognize. If the specified - /// continue value is no longer valid whether due to expiration - /// (generally five to fifteen minutes) or a configuration change on - /// the server, the server will respond with a 410 ResourceExpired - /// error together with a continue token. If the client needs a - /// consistent list, it must restart their list without the continue - /// field. Otherwise, the client may send another list request with the - /// token received with the 410 error, the server will respond with a - /// list starting from the next key, but from the latest snapshot, - /// which is inconsistent from the previous list results - objects that - /// are created, modified, or deleted after the first list request will - /// be included in the response, as long as their keys are after the - /// "next key". - /// - /// This field is not supported when watch is true. Clients may start a - /// watch from the last resourceVersion value returned by the server - /// and not miss any modifications. - /// - /// - /// A selector to restrict the list of returned objects by their - /// fields. Defaults to everything. - /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// - /// - /// A selector to restrict the list of returned objects by their - /// labels. Defaults to everything. - /// - /// - /// limit is a maximum number of responses to return for a list call. - /// If more items exist, the server will set the `continue` field on - /// the list metadata to a value that can be used with the same initial - /// query to retrieve the next set of results. Setting a limit may - /// return fewer than the requested amount of items (up to zero items) - /// in the event all requested objects are filtered out and clients - /// should only use the presence of the continue field to determine - /// whether more results are available. Servers may choose not to - /// support the limit argument and will return all of the available - /// results. If limit is specified and the continue field is empty, - /// clients may assume that no more results are available. This field - /// is not supported if watch is true. - /// - /// The server guarantees that the objects returned when using continue - /// will be identical to issuing a single list call without a limit - - /// that is, no objects created, modified, or deleted after the first - /// request is issued will be included in any subsequent continued - /// requests. This is sometimes referred to as a consistent snapshot, - /// and ensures that a client that is using limit to receive smaller - /// chunks of a very large result can ensure they see all possible - /// objects. If objects are updated during a chunked list the version - /// of the object that was present at the time the first list result - /// was calculated is returned. - /// - /// - /// When specified with a watch call, shows changes that occur after - /// that particular version of a resource. Defaults to changes from the - /// beginning of history. When specified for list: - if unset, then the - /// result is returned from remote storage based on quorum-read flag; - - /// if it's 0, then we simply return what we currently have in cache, - /// no guarantee; - if set to non zero, then the result is at least as - /// fresh as given rv. - /// - /// - /// Timeout for the list/watch call. This limits the duration of the - /// call, regardless of any activity or inactivity. - /// - /// - /// Watch for changes to the described resources and return them as a - /// stream of add, update, and remove notifications. Specify - /// resourceVersion. - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> ListPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// create a PriorityClass - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreatePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// delete collection of PriorityClass - /// - /// - /// The continue option should be set when retrieving more results from - /// the server. Since this value is server defined, clients may only - /// use the continue value from a previous query result with identical - /// query parameters (except for the value of continue) and the server - /// may reject a continue value it does not recognize. If the specified - /// continue value is no longer valid whether due to expiration - /// (generally five to fifteen minutes) or a configuration change on - /// the server, the server will respond with a 410 ResourceExpired - /// error together with a continue token. If the client needs a - /// consistent list, it must restart their list without the continue - /// field. Otherwise, the client may send another list request with the - /// token received with the 410 error, the server will respond with a - /// list starting from the next key, but from the latest snapshot, - /// which is inconsistent from the previous list results - objects that - /// are created, modified, or deleted after the first list request will - /// be included in the response, as long as their keys are after the - /// "next key". - /// - /// This field is not supported when watch is true. Clients may start a - /// watch from the last resourceVersion value returned by the server - /// and not miss any modifications. - /// - /// - /// A selector to restrict the list of returned objects by their - /// fields. Defaults to everything. - /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// - /// - /// A selector to restrict the list of returned objects by their - /// labels. Defaults to everything. - /// - /// - /// limit is a maximum number of responses to return for a list call. - /// If more items exist, the server will set the `continue` field on - /// the list metadata to a value that can be used with the same initial - /// query to retrieve the next set of results. Setting a limit may - /// return fewer than the requested amount of items (up to zero items) - /// in the event all requested objects are filtered out and clients - /// should only use the presence of the continue field to determine - /// whether more results are available. Servers may choose not to - /// support the limit argument and will return all of the available - /// results. If limit is specified and the continue field is empty, - /// clients may assume that no more results are available. This field - /// is not supported if watch is true. - /// - /// The server guarantees that the objects returned when using continue - /// will be identical to issuing a single list call without a limit - - /// that is, no objects created, modified, or deleted after the first - /// request is issued will be included in any subsequent continued - /// requests. This is sometimes referred to as a consistent snapshot, - /// and ensures that a client that is using limit to receive smaller - /// chunks of a very large result can ensure they see all possible - /// objects. If objects are updated during a chunked list the version - /// of the object that was present at the time the first list result - /// was calculated is returned. - /// - /// - /// When specified with a watch call, shows changes that occur after - /// that particular version of a resource. Defaults to changes from the - /// beginning of history. When specified for list: - if unset, then the - /// result is returned from remote storage based on quorum-read flag; - - /// if it's 0, then we simply return what we currently have in cache, - /// no guarantee; - if set to non zero, then the result is at least as - /// fresh as given rv. - /// - /// - /// Timeout for the list/watch call. This limits the duration of the - /// call, regardless of any activity or inactivity. - /// - /// - /// Watch for changes to the described resources and return them as a - /// stream of add, update, and remove notifications. Specify - /// resourceVersion. - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> DeleteCollectionPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// read the specified PriorityClass - /// - /// - /// name of the PriorityClass - /// - /// - /// Should the export be exact. Exact export maintains - /// cluster-specific fields like 'Namespace'. - /// - /// - /// Should this value be exported. Export strips fields that a user - /// can not specify. - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> ReadPriorityClassWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// replace the specified PriorityClass - /// - /// - /// - /// - /// name of the PriorityClass - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> ReplacePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// delete a PriorityClass - /// - /// - /// - /// - /// name of the PriorityClass - /// - /// - /// When present, indicates that modifications should not be persisted. - /// An invalid or unrecognized dryRun directive will result in an error - /// response and no further processing of the request. Valid values - /// are: - All: all dry run stages will be processed - /// - /// - /// 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. - /// Acceptable values are: 'Orphan' - orphan the dependents; - /// 'Background' - allow the garbage collector to delete the dependents - /// in the background; 'Foreground' - a cascading policy that deletes - /// all dependents in the foreground. - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> DeletePriorityClassWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// partially update the specified PriorityClass - /// - /// - /// - /// - /// name of the PriorityClass - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> PatchPriorityClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -30069,10 +32212,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -30120,6 +32259,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30129,13 +32272,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PriorityClass /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30145,7 +32298,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreatePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreatePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PriorityClass @@ -30177,10 +32330,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -30228,6 +32377,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30237,7 +32390,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PriorityClass @@ -30262,7 +32415,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReadPriorityClass1WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReadPriorityClassWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace the specified PriorityClass @@ -30272,6 +32425,12 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30281,16 +32440,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplacePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplacePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PriorityClass /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -30330,7 +32489,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeletePriorityClass1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeletePriorityClassWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PriorityClass @@ -30340,6 +32499,12 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30349,18 +32514,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchPriorityClass1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// get information of a group - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetAPIGroup16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPriorityClassWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -30373,6 +32527,362 @@ namespace k8s /// Task> GetAPIResources30WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// list or watch objects of kind PriorityClass + /// + /// + /// The continue option should be set when retrieving more results from + /// the server. Since this value is server defined, clients may only + /// use the continue value from a previous query result with identical + /// query parameters (except for the value of continue) and the server + /// may reject a continue value it does not recognize. If the specified + /// continue value is no longer valid whether due to expiration + /// (generally five to fifteen minutes) or a configuration change on + /// the server, the server will respond with a 410 ResourceExpired + /// error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue + /// field. Otherwise, the client may send another list request with the + /// token received with the 410 error, the server will respond with a + /// list starting from the next key, but from the latest snapshot, + /// which is inconsistent from the previous list results - objects that + /// are created, modified, or deleted after the first list request will + /// be included in the response, as long as their keys are after the + /// "next key". + /// + /// This field is not supported when watch is true. Clients may start a + /// watch from the last resourceVersion value returned by the server + /// and not miss any modifications. + /// + /// + /// A selector to restrict the list of returned objects by their + /// fields. Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their + /// labels. Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. + /// If more items exist, the server will set the `continue` field on + /// the list metadata to a value that can be used with the same initial + /// query to retrieve the next set of results. Setting a limit may + /// return fewer than the requested amount of items (up to zero items) + /// in the event all requested objects are filtered out and clients + /// should only use the presence of the continue field to determine + /// whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available + /// results. If limit is specified and the continue field is empty, + /// clients may assume that no more results are available. This field + /// is not supported if watch is true. + /// + /// The server guarantees that the objects returned when using continue + /// will be identical to issuing a single list call without a limit - + /// that is, no objects created, modified, or deleted after the first + /// request is issued will be included in any subsequent continued + /// requests. This is sometimes referred to as a consistent snapshot, + /// and ensures that a client that is using limit to receive smaller + /// chunks of a very large result can ensure they see all possible + /// objects. If objects are updated during a chunked list the version + /// of the object that was present at the time the first list result + /// was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after + /// that particular version of a resource. Defaults to changes from the + /// beginning of history. When specified for list: - if unset, then the + /// result is returned from remote storage based on quorum-read flag; - + /// if it's 0, then we simply return what we currently have in cache, + /// no guarantee; - if set to non zero, then the result is at least as + /// fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the + /// call, regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a PriorityClass + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreatePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// delete collection of PriorityClass + /// + /// + /// The continue option should be set when retrieving more results from + /// the server. Since this value is server defined, clients may only + /// use the continue value from a previous query result with identical + /// query parameters (except for the value of continue) and the server + /// may reject a continue value it does not recognize. If the specified + /// continue value is no longer valid whether due to expiration + /// (generally five to fifteen minutes) or a configuration change on + /// the server, the server will respond with a 410 ResourceExpired + /// error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue + /// field. Otherwise, the client may send another list request with the + /// token received with the 410 error, the server will respond with a + /// list starting from the next key, but from the latest snapshot, + /// which is inconsistent from the previous list results - objects that + /// are created, modified, or deleted after the first list request will + /// be included in the response, as long as their keys are after the + /// "next key". + /// + /// This field is not supported when watch is true. Clients may start a + /// watch from the last resourceVersion value returned by the server + /// and not miss any modifications. + /// + /// + /// A selector to restrict the list of returned objects by their + /// fields. Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their + /// labels. Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. + /// If more items exist, the server will set the `continue` field on + /// the list metadata to a value that can be used with the same initial + /// query to retrieve the next set of results. Setting a limit may + /// return fewer than the requested amount of items (up to zero items) + /// in the event all requested objects are filtered out and clients + /// should only use the presence of the continue field to determine + /// whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available + /// results. If limit is specified and the continue field is empty, + /// clients may assume that no more results are available. This field + /// is not supported if watch is true. + /// + /// The server guarantees that the objects returned when using continue + /// will be identical to issuing a single list call without a limit - + /// that is, no objects created, modified, or deleted after the first + /// request is issued will be included in any subsequent continued + /// requests. This is sometimes referred to as a consistent snapshot, + /// and ensures that a client that is using limit to receive smaller + /// chunks of a very large result can ensure they see all possible + /// objects. If objects are updated during a chunked list the version + /// of the object that was present at the time the first list result + /// was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after + /// that particular version of a resource. Defaults to changes from the + /// beginning of history. When specified for list: - if unset, then the + /// result is returned from remote storage based on quorum-read flag; - + /// if it's 0, then we simply return what we currently have in cache, + /// no guarantee; - if set to non zero, then the result is at least as + /// fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the + /// call, regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeleteCollectionPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// read the specified PriorityClass + /// + /// + /// name of the PriorityClass + /// + /// + /// Should the export be exact. Exact export maintains + /// cluster-specific fields like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user + /// can not specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReadPriorityClass1WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// replace the specified PriorityClass + /// + /// + /// + /// + /// name of the PriorityClass + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReplacePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// delete a PriorityClass + /// + /// + /// name of the PriorityClass + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// 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. + /// Acceptable values are: 'Orphan' - orphan the dependents; + /// 'Background' - allow the garbage collector to delete the dependents + /// in the background; 'Foreground' - a cascading policy that deletes + /// all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeletePriorityClass1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// partially update the specified PriorityClass + /// + /// + /// + /// + /// name of the PriorityClass + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> PatchPriorityClass1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// get information of a group + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetAPIGroup17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// get available resources + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetAPIResources31WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// list or watch objects of kind PodPreset /// @@ -30406,10 +32916,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -30457,6 +32963,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30466,7 +32976,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ListNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a PodPreset @@ -30476,6 +32986,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30485,7 +33005,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of PodPreset @@ -30520,10 +33040,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -30571,6 +33087,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30580,7 +33100,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified PodPreset @@ -30621,6 +33141,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30630,19 +33156,19 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a PodPreset /// - /// - /// /// /// name of the PodPreset /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -30682,7 +33208,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteNamespacedPodPresetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteNamespacedPodPresetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified PodPreset @@ -30695,6 +33221,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30704,7 +33236,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchNamespacedPodPresetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespacedPodPresetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodPreset @@ -30807,7 +33339,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIGroup17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIGroup18WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -30818,7 +33350,7 @@ namespace k8s /// /// The cancellation token. /// - Task> GetAPIResources31WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAPIResources32WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StorageClass @@ -30850,10 +33382,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -30901,6 +33429,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30910,13 +33442,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a StorageClass /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -30926,7 +33468,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateStorageClassWithHttpMessagesAsync(V1StorageClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateStorageClassWithHttpMessagesAsync(V1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of StorageClass @@ -30958,10 +33500,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31009,6 +33547,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31018,7 +33560,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified StorageClass @@ -31053,6 +33595,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -31062,16 +33610,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceStorageClassWithHttpMessagesAsync(V1StorageClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceStorageClassWithHttpMessagesAsync(V1StorageClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a StorageClass /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -31111,7 +33659,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteStorageClassWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteStorageClassWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified StorageClass @@ -31121,6 +33669,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -31130,18 +33684,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchStorageClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - - /// - /// get available resources - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetAPIResources32WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchStorageClassWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind VolumeAttachment @@ -31173,10 +33716,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31224,6 +33763,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31233,13 +33776,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a VolumeAttachment /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31249,7 +33802,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateVolumeAttachmentWithHttpMessagesAsync(V1alpha1VolumeAttachment body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateVolumeAttachmentWithHttpMessagesAsync(V1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of VolumeAttachment @@ -31281,10 +33834,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31332,6 +33881,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31341,7 +33894,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified VolumeAttachment @@ -31366,7 +33919,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReadVolumeAttachmentWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReadVolumeAttachmentWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace the specified VolumeAttachment @@ -31376,6 +33929,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -31385,16 +33944,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceVolumeAttachmentWithHttpMessagesAsync(V1alpha1VolumeAttachment body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceVolumeAttachmentWithHttpMessagesAsync(V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a VolumeAttachment /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -31434,7 +33993,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteVolumeAttachmentWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteVolumeAttachmentWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified VolumeAttachment @@ -31444,6 +34003,29 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> PatchVolumeAttachmentWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// read status of the specified VolumeAttachment + /// + /// + /// name of the VolumeAttachment + /// /// /// If 'true', then the output is pretty printed. /// @@ -31453,7 +34035,57 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchVolumeAttachmentWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReadVolumeAttachmentStatusWithHttpMessagesAsync(string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// replace status of the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReplaceVolumeAttachmentStatusWithHttpMessagesAsync(V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// partially update status of the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> PatchVolumeAttachmentStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -31466,6 +34098,351 @@ namespace k8s /// Task> GetAPIResources33WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// list or watch objects of kind VolumeAttachment + /// + /// + /// The continue option should be set when retrieving more results from + /// the server. Since this value is server defined, clients may only + /// use the continue value from a previous query result with identical + /// query parameters (except for the value of continue) and the server + /// may reject a continue value it does not recognize. If the specified + /// continue value is no longer valid whether due to expiration + /// (generally five to fifteen minutes) or a configuration change on + /// the server, the server will respond with a 410 ResourceExpired + /// error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue + /// field. Otherwise, the client may send another list request with the + /// token received with the 410 error, the server will respond with a + /// list starting from the next key, but from the latest snapshot, + /// which is inconsistent from the previous list results - objects that + /// are created, modified, or deleted after the first list request will + /// be included in the response, as long as their keys are after the + /// "next key". + /// + /// This field is not supported when watch is true. Clients may start a + /// watch from the last resourceVersion value returned by the server + /// and not miss any modifications. + /// + /// + /// A selector to restrict the list of returned objects by their + /// fields. Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their + /// labels. Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. + /// If more items exist, the server will set the `continue` field on + /// the list metadata to a value that can be used with the same initial + /// query to retrieve the next set of results. Setting a limit may + /// return fewer than the requested amount of items (up to zero items) + /// in the event all requested objects are filtered out and clients + /// should only use the presence of the continue field to determine + /// whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available + /// results. If limit is specified and the continue field is empty, + /// clients may assume that no more results are available. This field + /// is not supported if watch is true. + /// + /// The server guarantees that the objects returned when using continue + /// will be identical to issuing a single list call without a limit - + /// that is, no objects created, modified, or deleted after the first + /// request is issued will be included in any subsequent continued + /// requests. This is sometimes referred to as a consistent snapshot, + /// and ensures that a client that is using limit to receive smaller + /// chunks of a very large result can ensure they see all possible + /// objects. If objects are updated during a chunked list the version + /// of the object that was present at the time the first list result + /// was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after + /// that particular version of a resource. Defaults to changes from the + /// beginning of history. When specified for list: - if unset, then the + /// result is returned from remote storage based on quorum-read flag; - + /// if it's 0, then we simply return what we currently have in cache, + /// no guarantee; - if set to non zero, then the result is at least as + /// fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the + /// call, regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// create a VolumeAttachment + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateVolumeAttachment1WithHttpMessagesAsync(V1alpha1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// delete collection of VolumeAttachment + /// + /// + /// The continue option should be set when retrieving more results from + /// the server. Since this value is server defined, clients may only + /// use the continue value from a previous query result with identical + /// query parameters (except for the value of continue) and the server + /// may reject a continue value it does not recognize. If the specified + /// continue value is no longer valid whether due to expiration + /// (generally five to fifteen minutes) or a configuration change on + /// the server, the server will respond with a 410 ResourceExpired + /// error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue + /// field. Otherwise, the client may send another list request with the + /// token received with the 410 error, the server will respond with a + /// list starting from the next key, but from the latest snapshot, + /// which is inconsistent from the previous list results - objects that + /// are created, modified, or deleted after the first list request will + /// be included in the response, as long as their keys are after the + /// "next key". + /// + /// This field is not supported when watch is true. Clients may start a + /// watch from the last resourceVersion value returned by the server + /// and not miss any modifications. + /// + /// + /// A selector to restrict the list of returned objects by their + /// fields. Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their + /// labels. Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. + /// If more items exist, the server will set the `continue` field on + /// the list metadata to a value that can be used with the same initial + /// query to retrieve the next set of results. Setting a limit may + /// return fewer than the requested amount of items (up to zero items) + /// in the event all requested objects are filtered out and clients + /// should only use the presence of the continue field to determine + /// whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available + /// results. If limit is specified and the continue field is empty, + /// clients may assume that no more results are available. This field + /// is not supported if watch is true. + /// + /// The server guarantees that the objects returned when using continue + /// will be identical to issuing a single list call without a limit - + /// that is, no objects created, modified, or deleted after the first + /// request is issued will be included in any subsequent continued + /// requests. This is sometimes referred to as a consistent snapshot, + /// and ensures that a client that is using limit to receive smaller + /// chunks of a very large result can ensure they see all possible + /// objects. If objects are updated during a chunked list the version + /// of the object that was present at the time the first list result + /// was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after + /// that particular version of a resource. Defaults to changes from the + /// beginning of history. When specified for list: - if unset, then the + /// result is returned from remote storage based on quorum-read flag; - + /// if it's 0, then we simply return what we currently have in cache, + /// no guarantee; - if set to non zero, then the result is at least as + /// fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the + /// call, regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a + /// stream of add, update, and remove notifications. Specify + /// resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeleteCollectionVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// read the specified VolumeAttachment + /// + /// + /// name of the VolumeAttachment + /// + /// + /// Should the export be exact. Exact export maintains + /// cluster-specific fields like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user + /// can not specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReadVolumeAttachment1WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// replace the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ReplaceVolumeAttachment1WithHttpMessagesAsync(V1alpha1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// delete a VolumeAttachment + /// + /// + /// name of the VolumeAttachment + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// 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. + /// Acceptable values are: 'Orphan' - orphan the dependents; + /// 'Background' - allow the garbage collector to delete the dependents + /// in the background; 'Foreground' - a cascading policy that deletes + /// all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> DeleteVolumeAttachment1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// partially update the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> PatchVolumeAttachment1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// get available resources + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetAPIResources34WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// list or watch objects of kind StorageClass /// @@ -31496,10 +34473,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31547,6 +34520,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31556,13 +34533,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a StorageClass /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31572,7 +34559,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of StorageClass @@ -31604,10 +34591,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31655,6 +34638,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31664,7 +34651,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified StorageClass @@ -31699,6 +34686,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -31708,16 +34701,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a StorageClass /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -31757,7 +34750,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteStorageClass1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteStorageClass1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified StorageClass @@ -31767,6 +34760,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -31776,7 +34775,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchStorageClass1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchStorageClass1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind VolumeAttachment @@ -31808,10 +34807,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31859,6 +34854,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31868,13 +34867,23 @@ namespace k8s /// /// The cancellation token. /// - Task> ListVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListVolumeAttachment2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create a VolumeAttachment /// /// /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31884,7 +34893,7 @@ namespace k8s /// /// The cancellation token. /// - Task> CreateVolumeAttachment1WithHttpMessagesAsync(V1beta1VolumeAttachment body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateVolumeAttachment2WithHttpMessagesAsync(V1beta1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete collection of VolumeAttachment @@ -31916,10 +34925,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their /// fields. Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the - /// response. - /// /// /// A selector to restrict the list of returned objects by their /// labels. Defaults to everything. @@ -31967,6 +34972,10 @@ namespace k8s /// stream of add, update, and remove notifications. Specify /// resourceVersion. /// + /// + /// If true, partially initialized resources are included in the + /// response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31976,7 +34985,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteCollectionVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteCollectionVolumeAttachment2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified VolumeAttachment @@ -32001,7 +35010,7 @@ namespace k8s /// /// The cancellation token. /// - Task> ReadVolumeAttachment1WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReadVolumeAttachment2WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace the specified VolumeAttachment @@ -32011,6 +35020,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -32020,16 +35035,16 @@ namespace k8s /// /// The cancellation token. /// - Task> ReplaceVolumeAttachment1WithHttpMessagesAsync(V1beta1VolumeAttachment body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceVolumeAttachment2WithHttpMessagesAsync(V1beta1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// delete a VolumeAttachment /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. /// An invalid or unrecognized dryRun directive will result in an error @@ -32069,7 +35084,7 @@ namespace k8s /// /// The cancellation token. /// - Task> DeleteVolumeAttachment1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteVolumeAttachment2WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// partially update the specified VolumeAttachment @@ -32079,6 +35094,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. + /// An invalid or unrecognized dryRun directive will result in an error + /// response and no further processing of the request. Valid values + /// are: - All: all dry run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -32088,7 +35109,7 @@ namespace k8s /// /// The cancellation token. /// - Task> PatchVolumeAttachment1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchVolumeAttachment2WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The headers that will be added to request. diff --git a/src/KubernetesClient/generated/Kubernetes.cs b/src/KubernetesClient/generated/Kubernetes.cs index 4fed0c9..1ec184d 100644 --- a/src/KubernetesClient/generated/Kubernetes.cs +++ b/src/KubernetesClient/generated/Kubernetes.cs @@ -40,6 +40,19 @@ namespace k8s /// public ServiceClientCredentials Credentials { get; private set; } + /// + /// Initializes a new instance of the Kubernetes class. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling Kubernetes.Dispose(). False: will not dispose provided httpClient + protected Kubernetes(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + Initialize(); + } + /// /// Initializes a new instance of the Kubernetes class. /// @@ -135,6 +148,33 @@ namespace k8s } } + /// + /// Initializes a new instance of the Kubernetes class. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling Kubernetes.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public Kubernetes(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + /// /// Initializes a new instance of the Kubernetes class. /// @@ -1953,9 +1993,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1999,6 +2036,10 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2017,7 +2058,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespaceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespaceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2028,12 +2069,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListNamespace", tracingParameters); @@ -2050,10 +2091,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -2074,6 +2111,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -2180,6 +2221,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2204,7 +2255,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespaceWithHttpMessagesAsync(V1Namespace body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespaceWithHttpMessagesAsync(V1Namespace body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -2222,6 +2273,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateNamespace", tracingParameters); @@ -2230,6 +2283,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -2381,6 +2442,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2405,7 +2476,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedBindingWithHttpMessagesAsync(V1Binding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedBindingWithHttpMessagesAsync(V1Binding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -2427,6 +2498,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2437,6 +2510,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/bindings").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -2611,9 +2692,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2657,6 +2735,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2681,7 +2762,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -2696,12 +2777,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2720,10 +2801,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -2744,6 +2821,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -2853,6 +2934,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -2877,7 +2967,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -2899,6 +2989,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2909,6 +3001,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/configmaps").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -3083,9 +3183,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -3129,6 +3226,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -3153,7 +3253,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedConfigMapWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -3168,12 +3268,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -3192,10 +3292,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -3216,6 +3312,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -3509,6 +3609,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3533,7 +3639,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedConfigMapWithHttpMessagesAsync(V1ConfigMap body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -3559,6 +3665,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -3571,6 +3678,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -3699,14 +3810,14 @@ namespace k8s /// /// delete a ConfigMap /// - /// - /// /// /// name of the ConfigMap /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -3759,12 +3870,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedConfigMapWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedConfigMapWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -3949,6 +4056,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -3973,7 +4086,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedConfigMapWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedConfigMapWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -3995,6 +4108,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -4007,6 +4121,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -4145,9 +4263,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4191,6 +4306,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4215,7 +4333,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -4230,12 +4348,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -4254,10 +4372,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -4278,6 +4392,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -4387,6 +4505,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4411,7 +4538,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -4433,6 +4560,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -4443,6 +4572,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/endpoints").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -4617,9 +4754,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4663,6 +4797,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -4687,7 +4824,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedEndpointsWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -4702,12 +4839,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -4726,10 +4863,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -4750,6 +4883,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -5043,6 +5180,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5067,7 +5210,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedEndpointsWithHttpMessagesAsync(V1Endpoints body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -5093,6 +5236,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -5105,6 +5249,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -5233,14 +5381,14 @@ namespace k8s /// /// delete Endpoints /// - /// - /// /// /// name of the Endpoints /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -5293,12 +5441,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedEndpointsWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedEndpointsWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -5483,6 +5627,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -5507,7 +5657,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedEndpointsWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedEndpointsWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -5529,6 +5679,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -5541,6 +5692,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -5679,9 +5834,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -5725,6 +5877,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -5749,7 +5904,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -5764,12 +5919,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -5788,10 +5943,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -5812,6 +5963,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -5921,6 +6076,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -5945,7 +6109,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedEventWithHttpMessagesAsync(V1Event body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedEventWithHttpMessagesAsync(V1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -5967,6 +6131,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -5977,6 +6143,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/events").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -6151,9 +6325,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -6197,6 +6368,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -6221,7 +6395,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedEventWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -6236,12 +6410,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -6260,10 +6434,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -6284,6 +6454,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -6577,6 +6751,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -6601,7 +6781,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedEventWithHttpMessagesAsync(V1Event body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedEventWithHttpMessagesAsync(V1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -6627,6 +6807,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -6639,6 +6820,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -6767,14 +6952,14 @@ namespace k8s /// /// delete an Event /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -6827,12 +7012,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedEventWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedEventWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -7017,6 +7198,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -7041,7 +7228,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedEventWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedEventWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -7063,6 +7250,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -7075,6 +7263,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -7213,9 +7405,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7259,6 +7448,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -7283,7 +7475,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -7298,12 +7490,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -7322,10 +7514,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -7346,6 +7534,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -7455,6 +7647,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -7479,7 +7680,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -7501,6 +7702,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -7511,6 +7714,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/limitranges").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -7685,9 +7896,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7731,6 +7939,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -7755,7 +7966,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedLimitRangeWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -7770,12 +7981,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -7794,10 +8005,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -7818,6 +8025,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -8111,6 +8322,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8135,7 +8352,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedLimitRangeWithHttpMessagesAsync(V1LimitRange body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -8161,6 +8378,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -8173,6 +8391,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -8301,14 +8523,14 @@ namespace k8s /// /// delete a LimitRange /// - /// - /// /// /// name of the LimitRange /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -8361,12 +8583,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedLimitRangeWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedLimitRangeWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -8551,6 +8769,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -8575,7 +8799,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedLimitRangeWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedLimitRangeWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -8597,6 +8821,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -8609,6 +8834,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -8747,9 +8976,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -8793,6 +9019,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -8817,7 +9046,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -8832,12 +9061,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -8856,10 +9085,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -8880,6 +9105,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -8989,6 +9218,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9013,7 +9251,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -9035,6 +9273,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -9045,6 +9285,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/persistentvolumeclaims").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -9219,9 +9467,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -9265,6 +9510,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -9289,7 +9537,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -9304,12 +9552,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -9328,10 +9576,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -9352,6 +9596,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -9645,6 +9893,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -9669,7 +9923,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -9695,6 +9949,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -9707,6 +9962,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -9835,14 +10094,14 @@ namespace k8s /// /// delete a PersistentVolumeClaim /// - /// - /// /// /// name of the PersistentVolumeClaim /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -9895,12 +10154,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedPersistentVolumeClaimWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -10085,6 +10340,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10109,7 +10370,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -10131,6 +10392,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -10143,6 +10405,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -10424,6 +10690,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10448,7 +10720,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -10474,6 +10746,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -10486,6 +10759,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -10622,6 +10899,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -10646,7 +10929,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -10668,6 +10951,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -10680,6 +10964,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -10818,9 +11106,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10864,6 +11149,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -10888,7 +11176,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -10903,12 +11191,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -10927,10 +11215,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -10951,6 +11235,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -11060,6 +11348,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11084,7 +11381,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPodWithHttpMessagesAsync(V1Pod body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPodWithHttpMessagesAsync(V1Pod body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -11106,6 +11403,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -11116,6 +11415,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/pods").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -11290,9 +11597,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -11336,6 +11640,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -11360,7 +11667,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedPodWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -11375,12 +11682,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -11399,10 +11706,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -11423,6 +11726,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -11716,6 +12023,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -11740,7 +12053,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPodWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPodWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -11766,6 +12079,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -11778,6 +12092,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -11906,14 +12224,14 @@ namespace k8s /// /// delete a Pod /// - /// - /// /// /// name of the Pod /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -11966,12 +12284,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedPodWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedPodWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -12156,6 +12470,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -12180,7 +12500,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPodWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -12202,6 +12522,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -12214,6 +12535,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -12734,6 +13059,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -12758,7 +13093,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPodBindingWithHttpMessagesAsync(V1Binding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPodBindingWithHttpMessagesAsync(V1Binding body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -12784,6 +13119,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -12796,6 +13133,14 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -12950,6 +13295,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -12974,7 +13329,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPodEvictionWithHttpMessagesAsync(V1beta1Eviction body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPodEvictionWithHttpMessagesAsync(V1beta1Eviction body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -13000,6 +13355,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -13012,6 +13369,14 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -16322,6 +16687,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16346,7 +16717,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPodStatusWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPodStatusWithHttpMessagesAsync(V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -16372,6 +16743,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -16384,6 +16756,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -16520,6 +16896,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -16544,7 +16926,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPodStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -16566,6 +16948,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -16578,6 +16961,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -16716,9 +17103,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16762,6 +17146,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -16786,7 +17173,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -16801,12 +17188,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -16825,10 +17212,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -16849,6 +17232,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -16958,6 +17345,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -16982,7 +17378,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -17004,6 +17400,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -17014,6 +17412,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/podtemplates").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -17188,9 +17594,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -17234,6 +17637,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -17258,7 +17664,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedPodTemplateWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -17273,12 +17679,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -17297,10 +17703,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -17321,6 +17723,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -17614,6 +18020,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -17638,7 +18050,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPodTemplateWithHttpMessagesAsync(V1PodTemplate body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -17664,6 +18076,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -17676,6 +18089,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -17804,14 +18221,14 @@ namespace k8s /// /// delete a PodTemplate /// - /// - /// /// /// name of the PodTemplate /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -17864,12 +18281,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedPodTemplateWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedPodTemplateWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -18054,6 +18467,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -18078,7 +18497,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodTemplateWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPodTemplateWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -18100,6 +18519,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -18112,6 +18532,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -18250,9 +18674,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18296,6 +18717,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18320,7 +18744,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -18335,12 +18759,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -18359,10 +18783,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -18383,6 +18803,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -18492,6 +18916,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18516,7 +18949,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -18538,6 +18971,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -18548,6 +18983,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/replicationcontrollers").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -18722,9 +19165,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18768,6 +19208,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -18792,7 +19235,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedReplicationControllerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -18807,12 +19250,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -18831,10 +19274,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -18855,6 +19294,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -19148,6 +19591,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19172,7 +19621,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicationControllerWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -19198,6 +19647,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -19210,6 +19660,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -19338,14 +19792,14 @@ namespace k8s /// /// delete a ReplicationController /// - /// - /// /// /// name of the ReplicationController /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -19398,12 +19852,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedReplicationControllerWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedReplicationControllerWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -19588,6 +20038,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19612,7 +20068,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicationControllerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -19634,6 +20090,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -19646,6 +20103,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -19927,6 +20388,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -19951,7 +20418,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -19977,6 +20444,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -19989,6 +20457,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -20125,6 +20597,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20149,7 +20627,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -20171,6 +20649,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -20183,6 +20662,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -20464,6 +20947,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20488,7 +20977,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -20514,6 +21003,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -20526,6 +21016,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -20662,6 +21156,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -20686,7 +21186,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -20708,6 +21208,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -20720,6 +21221,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -20858,9 +21363,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -20904,6 +21406,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -20928,7 +21433,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -20943,12 +21448,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -20967,10 +21472,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -20991,6 +21492,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -21100,6 +21605,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21124,7 +21638,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -21146,6 +21660,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -21156,6 +21672,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/resourcequotas").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -21330,9 +21854,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21376,6 +21897,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -21400,7 +21924,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedResourceQuotaWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -21415,12 +21939,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -21439,10 +21963,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -21463,6 +21983,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -21756,6 +22280,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -21780,7 +22310,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedResourceQuotaWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -21806,6 +22336,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -21818,6 +22349,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -21946,14 +22481,14 @@ namespace k8s /// /// delete a ResourceQuota /// - /// - /// /// /// name of the ResourceQuota /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -22006,12 +22541,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedResourceQuotaWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedResourceQuotaWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -22196,6 +22727,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22220,7 +22757,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedResourceQuotaWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedResourceQuotaWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -22242,6 +22779,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -22254,6 +22792,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -22535,6 +23077,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22559,7 +23107,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -22585,6 +23133,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -22597,6 +23146,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -22733,6 +23286,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -22757,7 +23316,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -22779,6 +23338,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -22791,6 +23351,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -22929,9 +23493,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -22975,6 +23536,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -22999,7 +23563,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -23014,12 +23578,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -23038,10 +23602,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -23062,6 +23622,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -23171,6 +23735,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23195,7 +23768,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedSecretWithHttpMessagesAsync(V1Secret body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedSecretWithHttpMessagesAsync(V1Secret body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -23217,6 +23790,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -23227,6 +23802,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/secrets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -23401,9 +23984,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -23447,6 +24027,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -23471,7 +24054,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedSecretWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -23486,12 +24069,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -23510,10 +24093,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -23534,6 +24113,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -23827,6 +24410,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -23851,7 +24440,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedSecretWithHttpMessagesAsync(V1Secret body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedSecretWithHttpMessagesAsync(V1Secret body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -23877,6 +24466,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -23889,6 +24479,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -24017,14 +24611,14 @@ namespace k8s /// /// delete a Secret /// - /// - /// /// /// name of the Secret /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -24077,12 +24671,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedSecretWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedSecretWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -24267,6 +24857,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -24291,7 +24887,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedSecretWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedSecretWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -24313,6 +24909,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -24325,6 +24922,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -24463,9 +25064,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -24509,6 +25107,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24533,7 +25134,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -24548,12 +25149,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -24572,10 +25173,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -24596,6 +25193,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -24705,6 +25306,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -24729,7 +25339,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -24751,6 +25361,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -24761,6 +25373,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/serviceaccounts").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -24935,9 +25555,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -24981,6 +25598,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -25005,7 +25625,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedServiceAccountWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -25020,12 +25640,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -25044,10 +25664,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -25068,6 +25684,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -25361,6 +25981,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25385,7 +26011,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedServiceAccountWithHttpMessagesAsync(V1ServiceAccount body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -25411,6 +26037,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -25423,6 +26050,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -25551,14 +26182,14 @@ namespace k8s /// /// delete a ServiceAccount /// - /// - /// /// /// name of the ServiceAccount /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -25611,12 +26242,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedServiceAccountWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedServiceAccountWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -25801,6 +26428,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -25825,7 +26458,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedServiceAccountWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedServiceAccountWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -25847,6 +26480,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -25859,6 +26493,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -25997,9 +26635,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26043,6 +26678,10 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26067,7 +26706,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedServiceWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedServiceWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -26082,12 +26721,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -26106,10 +26745,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -26130,6 +26765,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -26239,6 +26878,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -26263,7 +26912,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedServiceWithHttpMessagesAsync(V1Service body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedServiceWithHttpMessagesAsync(V1Service body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -26285,6 +26934,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -26295,6 +26946,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{namespace}/services").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -26630,6 +27289,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -26654,7 +27319,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedServiceWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedServiceWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -26680,6 +27345,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -26692,6 +27358,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -26820,14 +27490,14 @@ namespace k8s /// /// delete a Service /// - /// - /// /// /// name of the Service /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -26880,12 +27550,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedServiceWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedServiceWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -27070,6 +27736,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -27094,7 +27766,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedServiceWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedServiceWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -27116,6 +27788,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -27128,6 +27801,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -29491,6 +30168,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -29515,7 +30198,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedServiceStatusWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedServiceStatusWithHttpMessagesAsync(V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -29541,6 +30224,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -29553,6 +30237,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -29689,6 +30377,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -29713,7 +30407,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -29735,6 +30429,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -29747,6 +30442,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -30034,6 +30733,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30058,7 +30763,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespaceWithHttpMessagesAsync(V1Namespace body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespaceWithHttpMessagesAsync(V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -30080,6 +30785,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -30090,6 +30796,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -30218,11 +30928,11 @@ namespace k8s /// /// delete a Namespace /// - /// - /// /// /// name of the Namespace /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -30275,12 +30985,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespaceWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespaceWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -30456,6 +31162,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30480,7 +31192,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespaceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespaceWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -30498,6 +31210,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -30508,6 +31221,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -30623,6 +31340,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30647,7 +31370,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespaceFinalizeWithHttpMessagesAsync(V1Namespace body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespaceFinalizeWithHttpMessagesAsync(V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -30669,6 +31392,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -30679,6 +31403,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{name}/finalize").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -30966,6 +31694,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -30990,7 +31724,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespaceStatusWithHttpMessagesAsync(V1Namespace body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespaceStatusWithHttpMessagesAsync(V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -31012,6 +31746,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -31022,6 +31757,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -31155,6 +31894,12 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -31179,7 +31924,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespaceStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespaceStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -31197,6 +31942,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -31207,6 +31953,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/namespaces/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -31342,9 +32092,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -31388,6 +32135,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31406,7 +32156,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -31417,12 +32167,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListNode", tracingParameters); @@ -31439,10 +32189,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -31463,6 +32209,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -31569,6 +32319,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31593,7 +32352,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNodeWithHttpMessagesAsync(V1Node body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNodeWithHttpMessagesAsync(V1Node body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -31611,6 +32370,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateNode", tracingParameters); @@ -31619,6 +32380,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/nodes").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -31790,9 +32559,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -31836,6 +32602,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -31854,7 +32623,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNodeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -31865,12 +32634,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionNode", tracingParameters); @@ -31887,10 +32656,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -31911,6 +32676,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -32192,6 +32961,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -32216,7 +32991,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNodeWithHttpMessagesAsync(V1Node body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNodeWithHttpMessagesAsync(V1Node body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -32238,6 +33013,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -32248,6 +33024,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/nodes/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -32376,11 +33156,11 @@ namespace k8s /// /// delete a Node /// - /// - /// /// /// name of the Node /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -32433,12 +33213,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNodeWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNodeWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -32614,6 +33390,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -32638,7 +33420,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNodeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNodeWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -32656,6 +33438,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -32666,6 +33449,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/nodes/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -34861,6 +35648,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -34885,7 +35678,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNodeStatusWithHttpMessagesAsync(V1Node body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNodeStatusWithHttpMessagesAsync(V1Node body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -34907,6 +35700,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -34917,6 +35711,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/nodes/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -35050,6 +35848,12 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -35074,7 +35878,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNodeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNodeStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -35092,6 +35896,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -35102,6 +35907,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/nodes/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -35487,9 +36296,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -35533,6 +36339,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -35551,7 +36360,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -35562,12 +36371,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListPersistentVolume", tracingParameters); @@ -35584,10 +36393,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -35608,6 +36413,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -35714,6 +36523,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -35738,7 +36556,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreatePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreatePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -35756,6 +36574,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreatePersistentVolume", tracingParameters); @@ -35764,6 +36584,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/persistentvolumes").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -35935,9 +36763,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -35981,6 +36806,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -35999,7 +36827,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionPersistentVolumeWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -36010,12 +36838,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionPersistentVolume", tracingParameters); @@ -36032,10 +36860,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -36056,6 +36880,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -36337,6 +37165,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -36361,7 +37195,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplacePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplacePersistentVolumeWithHttpMessagesAsync(V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -36383,6 +37217,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -36393,6 +37228,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/persistentvolumes/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -36521,11 +37360,11 @@ namespace k8s /// /// delete a PersistentVolume /// - /// - /// /// /// name of the PersistentVolume /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -36578,12 +37417,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeletePersistentVolumeWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeletePersistentVolumeWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -36759,6 +37594,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -36783,7 +37624,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchPersistentVolumeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPersistentVolumeWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -36801,6 +37642,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -36811,6 +37653,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/persistentvolumes/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -37080,6 +37926,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -37104,7 +37956,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplacePersistentVolumeStatusWithHttpMessagesAsync(V1PersistentVolume body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplacePersistentVolumeStatusWithHttpMessagesAsync(V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -37126,6 +37978,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -37136,6 +37989,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/persistentvolumes/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -37269,6 +38126,12 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -37293,7 +38156,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -37311,6 +38174,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -37321,6 +38185,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "api/v1/persistentvolumes/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -39584,9 +40452,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -39630,6 +40495,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -39648,7 +40516,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -39659,12 +40527,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListInitializerConfiguration", tracingParameters); @@ -39681,10 +40549,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -39705,6 +40569,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -39811,6 +40679,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -39835,7 +40712,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -39853,6 +40730,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateInitializerConfiguration", tracingParameters); @@ -39861,6 +40740,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -40032,9 +40919,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -40078,6 +40962,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -40096,7 +40983,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionInitializerConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -40107,12 +40994,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionInitializerConfiguration", tracingParameters); @@ -40129,10 +41016,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -40153,6 +41036,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -40434,6 +41321,12 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -40458,7 +41351,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceInitializerConfigurationWithHttpMessagesAsync(V1alpha1InitializerConfiguration body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -40480,6 +41373,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -40490,6 +41384,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -40618,11 +41516,11 @@ namespace k8s /// /// delete an InitializerConfiguration /// - /// - /// /// /// name of the InitializerConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -40675,12 +41573,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteInitializerConfigurationWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteInitializerConfigurationWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -40856,6 +41750,12 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -40880,7 +41780,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchInitializerConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchInitializerConfigurationWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -40898,6 +41798,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -40908,6 +41809,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1alpha1/initializerconfigurations/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -41169,9 +42074,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -41215,6 +42117,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -41233,7 +42138,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -41244,12 +42149,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListMutatingWebhookConfiguration", tracingParameters); @@ -41266,10 +42171,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -41290,6 +42191,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -41396,6 +42301,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -41420,7 +42334,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -41438,6 +42352,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateMutatingWebhookConfiguration", tracingParameters); @@ -41446,6 +42362,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -41617,9 +42541,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -41663,6 +42584,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -41681,7 +42605,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionMutatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -41692,12 +42616,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionMutatingWebhookConfiguration", tracingParameters); @@ -41714,10 +42638,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -41738,6 +42658,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -42019,6 +42943,12 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -42043,7 +42973,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceMutatingWebhookConfigurationWithHttpMessagesAsync(V1beta1MutatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -42065,6 +42995,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -42075,6 +43006,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -42203,11 +43138,11 @@ namespace k8s /// /// delete a MutatingWebhookConfiguration /// - /// - /// /// /// name of the MutatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -42260,12 +43195,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteMutatingWebhookConfigurationWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteMutatingWebhookConfigurationWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -42441,6 +43372,12 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -42465,7 +43402,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchMutatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchMutatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -42483,6 +43420,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -42493,6 +43431,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -42628,9 +43570,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -42674,6 +43613,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -42692,7 +43634,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -42703,12 +43645,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListValidatingWebhookConfiguration", tracingParameters); @@ -42725,10 +43667,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -42749,6 +43687,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -42855,6 +43797,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -42879,7 +43830,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -42897,6 +43848,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateValidatingWebhookConfiguration", tracingParameters); @@ -42905,6 +43858,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -43076,9 +44037,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -43122,6 +44080,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -43140,7 +44101,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionValidatingWebhookConfigurationWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -43151,12 +44112,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionValidatingWebhookConfiguration", tracingParameters); @@ -43173,10 +44134,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -43197,6 +44154,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -43478,6 +44439,12 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -43502,7 +44469,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceValidatingWebhookConfigurationWithHttpMessagesAsync(V1beta1ValidatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -43524,6 +44491,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -43534,6 +44502,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -43662,11 +44634,11 @@ namespace k8s /// /// delete a ValidatingWebhookConfiguration /// - /// - /// /// /// name of the ValidatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -43719,12 +44691,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteValidatingWebhookConfigurationWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteValidatingWebhookConfigurationWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -43900,6 +44868,12 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -43924,7 +44898,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchValidatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchValidatingWebhookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -43942,6 +44916,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -43952,6 +44927,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -44339,9 +45318,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -44385,6 +45361,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -44403,7 +45382,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -44414,12 +45393,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListCustomResourceDefinition", tracingParameters); @@ -44436,10 +45415,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -44460,6 +45435,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -44566,6 +45545,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -44590,7 +45578,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -44608,6 +45596,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateCustomResourceDefinition", tracingParameters); @@ -44616,6 +45606,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -44787,9 +45785,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -44833,6 +45828,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -44851,7 +45849,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionCustomResourceDefinitionWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -44862,12 +45860,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionCustomResourceDefinition", tracingParameters); @@ -44884,10 +45882,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -44908,6 +45902,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -45189,6 +46187,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -45213,7 +46217,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceCustomResourceDefinitionWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -45235,6 +46239,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -45245,6 +46250,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -45373,11 +46382,11 @@ namespace k8s /// /// delete a CustomResourceDefinition /// - /// - /// /// /// name of the CustomResourceDefinition /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -45430,12 +46439,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCustomResourceDefinitionWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCustomResourceDefinitionWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -45611,6 +46616,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -45635,7 +46646,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -45653,6 +46664,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -45663,6 +46675,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -45932,6 +46948,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -45956,7 +46978,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceCustomResourceDefinitionStatusWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceCustomResourceDefinitionStatusWithHttpMessagesAsync(V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -45978,6 +47000,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -45988,6 +47011,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -46121,6 +47148,12 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -46145,7 +47178,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchCustomResourceDefinitionStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchCustomResourceDefinitionStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -46163,6 +47196,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -46173,6 +47207,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -46560,9 +47598,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46606,6 +47641,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -46624,7 +47662,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -46635,12 +47673,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListAPIService", tracingParameters); @@ -46657,10 +47695,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -46681,6 +47715,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -46787,6 +47825,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -46811,7 +47858,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateAPIServiceWithHttpMessagesAsync(V1APIService body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateAPIServiceWithHttpMessagesAsync(V1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -46829,6 +47876,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateAPIService", tracingParameters); @@ -46837,6 +47886,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1/apiservices").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -47008,9 +48065,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47054,6 +48108,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -47072,7 +48129,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionAPIServiceWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -47083,12 +48140,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionAPIService", tracingParameters); @@ -47105,10 +48162,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -47129,6 +48182,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -47410,6 +48467,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -47434,7 +48497,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceAPIServiceWithHttpMessagesAsync(V1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceAPIServiceWithHttpMessagesAsync(V1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -47456,6 +48519,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -47466,6 +48530,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1/apiservices/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -47594,11 +48662,11 @@ namespace k8s /// /// delete an APIService /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -47651,12 +48719,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteAPIServiceWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteAPIServiceWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -47832,6 +48896,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -47856,7 +48926,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchAPIServiceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchAPIServiceWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -47874,6 +48944,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -47884,6 +48955,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1/apiservices/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -48153,6 +49228,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -48177,7 +49258,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceAPIServiceStatusWithHttpMessagesAsync(V1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceAPIServiceStatusWithHttpMessagesAsync(V1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -48199,6 +49280,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -48209,6 +49291,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1/apiservices/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -48342,6 +49428,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -48366,7 +49458,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchAPIServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchAPIServiceStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -48384,6 +49476,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -48394,6 +49487,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1/apiservices/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -48655,9 +49752,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -48701,6 +49795,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -48719,7 +49816,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -48730,12 +49827,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListAPIService1", tracingParameters); @@ -48752,10 +49849,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -48776,6 +49869,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -48882,6 +49979,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -48906,7 +50012,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateAPIService1WithHttpMessagesAsync(V1beta1APIService body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateAPIService1WithHttpMessagesAsync(V1beta1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -48924,6 +50030,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateAPIService1", tracingParameters); @@ -48932,6 +50040,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1beta1/apiservices").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -49103,9 +50219,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -49149,6 +50262,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -49167,7 +50283,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionAPIService1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -49178,12 +50294,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionAPIService1", tracingParameters); @@ -49200,10 +50316,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -49224,6 +50336,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -49505,6 +50621,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -49529,7 +50651,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceAPIService1WithHttpMessagesAsync(V1beta1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceAPIService1WithHttpMessagesAsync(V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -49551,6 +50673,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -49561,6 +50684,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1beta1/apiservices/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -49689,11 +50816,11 @@ namespace k8s /// /// delete an APIService /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -49746,12 +50873,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteAPIService1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteAPIService1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -49927,6 +51050,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -49951,7 +51080,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchAPIService1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchAPIService1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -49969,6 +51098,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -49979,6 +51109,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1beta1/apiservices/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -50248,6 +51382,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -50272,7 +51412,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceAPIServiceStatus1WithHttpMessagesAsync(V1beta1APIService body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceAPIServiceStatus1WithHttpMessagesAsync(V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -50294,6 +51434,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -50304,6 +51445,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -50437,6 +51582,12 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -50461,7 +51612,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchAPIServiceStatus1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchAPIServiceStatus1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -50479,6 +51630,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -50489,6 +51641,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apiregistration.k8s.io/v1beta1/apiservices/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -51629,9 +52785,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -51675,6 +52828,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -51699,7 +52855,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -51714,12 +52870,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -51738,10 +52894,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -51762,6 +52914,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -51871,6 +53027,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -51895,7 +53060,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -51917,6 +53082,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -51927,6 +53094,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1/namespaces/{namespace}/controllerrevisions").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -52101,9 +53276,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -52147,6 +53319,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -52171,7 +53346,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedControllerRevisionWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -52186,12 +53361,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -52210,10 +53385,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -52234,6 +53405,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -52527,6 +53702,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -52551,7 +53732,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedControllerRevisionWithHttpMessagesAsync(V1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -52577,6 +53758,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -52589,6 +53771,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -52717,14 +53903,14 @@ namespace k8s /// /// delete a ControllerRevision /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -52777,12 +53963,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedControllerRevisionWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedControllerRevisionWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -52967,6 +54149,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -52991,7 +54179,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedControllerRevisionWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedControllerRevisionWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -53013,6 +54201,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -53025,6 +54214,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -53163,9 +54356,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53209,6 +54399,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -53233,7 +54426,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -53248,12 +54441,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -53272,10 +54465,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -53296,6 +54485,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -53405,6 +54598,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -53429,7 +54631,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -53451,6 +54653,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -53461,6 +54665,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1/namespaces/{namespace}/daemonsets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -53635,9 +54847,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53681,6 +54890,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -53705,7 +54917,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDaemonSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -53720,12 +54932,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -53744,10 +54956,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -53768,6 +54976,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -54061,6 +55273,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -54085,7 +55303,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDaemonSetWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -54111,6 +55329,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -54123,6 +55342,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -54251,14 +55474,14 @@ namespace k8s /// /// delete a DaemonSet /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -54311,12 +55534,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDaemonSetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDaemonSetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -54501,6 +55720,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -54525,7 +55750,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDaemonSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -54547,6 +55772,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -54559,6 +55785,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -54840,6 +56070,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -54864,7 +56100,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDaemonSetStatusWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDaemonSetStatusWithHttpMessagesAsync(V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -54890,6 +56126,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -54902,6 +56139,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -55038,6 +56279,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -55062,7 +56309,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -55084,6 +56331,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -55096,6 +56344,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -55234,9 +56486,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55280,6 +56529,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -55304,7 +56556,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -55319,12 +56571,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -55343,10 +56595,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -55367,6 +56615,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -55476,6 +56728,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -55500,7 +56761,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -55522,6 +56783,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -55532,6 +56795,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1/namespaces/{namespace}/deployments").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -55706,9 +56977,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55752,6 +57020,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -55776,7 +57047,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDeploymentWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -55791,12 +57062,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -55815,10 +57086,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -55839,6 +57106,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -56132,6 +57403,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -56156,7 +57433,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -56182,6 +57459,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -56194,6 +57472,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -56322,14 +57604,14 @@ namespace k8s /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -56382,12 +57664,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDeploymentWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDeploymentWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -56572,6 +57850,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -56596,7 +57880,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -56618,6 +57902,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -56630,6 +57915,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -56911,6 +58200,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -56935,7 +58230,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -56961,6 +58256,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -56973,6 +58269,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -57109,6 +58409,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -57133,7 +58439,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -57155,6 +58461,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -57167,6 +58474,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -57448,6 +58759,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -57472,7 +58789,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentStatusWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentStatusWithHttpMessagesAsync(V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -57498,6 +58815,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -57510,6 +58828,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -57646,6 +58968,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -57670,7 +58998,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -57692,6 +59020,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -57704,6 +59033,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -57842,9 +59175,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -57888,6 +59218,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -57912,7 +59245,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -57927,12 +59260,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -57951,10 +59284,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -57975,6 +59304,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -58084,6 +59417,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -58108,7 +59450,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -58130,6 +59472,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -58140,6 +59484,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1/namespaces/{namespace}/replicasets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -58314,9 +59666,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58360,6 +59709,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -58384,7 +59736,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedReplicaSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -58399,12 +59751,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -58423,10 +59775,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -58447,6 +59795,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -58740,6 +60092,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -58764,7 +60122,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -58790,6 +60148,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -58802,6 +60161,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -58930,14 +60293,14 @@ namespace k8s /// /// delete a ReplicaSet /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -58990,12 +60353,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedReplicaSetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedReplicaSetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -59180,6 +60539,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -59204,7 +60569,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -59226,6 +60591,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -59238,6 +60604,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -59519,6 +60889,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -59543,7 +60919,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -59569,6 +60945,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -59581,6 +60958,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -59717,6 +61098,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -59741,7 +61128,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -59763,6 +61150,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -59775,6 +61163,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -60056,6 +61448,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -60080,7 +61478,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetStatusWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetStatusWithHttpMessagesAsync(V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -60106,6 +61504,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -60118,6 +61517,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -60254,6 +61657,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -60278,7 +61687,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -60300,6 +61709,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -60312,6 +61722,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -60450,9 +61864,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -60496,6 +61907,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -60520,7 +61934,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -60535,12 +61949,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -60559,10 +61973,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -60583,6 +61993,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -60692,6 +62106,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -60716,7 +62139,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -60738,6 +62161,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -60748,6 +62173,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1/namespaces/{namespace}/statefulsets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -60922,9 +62355,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -60968,6 +62398,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -60992,7 +62425,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedStatefulSetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -61007,12 +62440,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -61031,10 +62464,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -61055,6 +62484,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -61348,6 +62781,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -61372,7 +62811,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -61398,6 +62837,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -61410,6 +62850,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -61538,14 +62982,14 @@ namespace k8s /// /// delete a StatefulSet /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -61598,12 +63042,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedStatefulSetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedStatefulSetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -61788,6 +63228,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -61812,7 +63258,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -61834,6 +63280,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -61846,6 +63293,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -62127,6 +63578,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -62151,7 +63608,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -62177,6 +63634,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -62189,6 +63647,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -62325,6 +63787,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -62349,7 +63817,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -62371,6 +63839,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -62383,6 +63852,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -62664,6 +64137,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -62688,7 +64167,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetStatusWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetStatusWithHttpMessagesAsync(V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -62714,6 +64193,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -62726,6 +64206,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -62862,6 +64346,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -62886,7 +64376,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -62908,6 +64398,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -62920,6 +64411,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -64184,9 +65679,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64230,6 +65722,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -64254,7 +65749,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -64269,12 +65764,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -64293,10 +65788,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -64317,6 +65808,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -64426,6 +65921,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -64450,7 +65954,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -64472,6 +65976,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -64482,6 +65988,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta1/namespaces/{namespace}/controllerrevisions").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -64656,9 +66170,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64702,6 +66213,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -64726,7 +66240,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedControllerRevision1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -64741,12 +66255,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -64765,10 +66279,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -64789,6 +66299,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -65082,6 +66596,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -65106,7 +66626,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedControllerRevision1WithHttpMessagesAsync(V1beta1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -65132,6 +66652,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -65144,6 +66665,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -65272,14 +66797,14 @@ namespace k8s /// /// delete a ControllerRevision /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -65332,12 +66857,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedControllerRevision1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedControllerRevision1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -65522,6 +67043,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -65546,7 +67073,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedControllerRevision1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedControllerRevision1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -65568,6 +67095,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -65580,6 +67108,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -65718,9 +67250,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -65764,6 +67293,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -65788,7 +67320,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -65803,12 +67335,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -65827,10 +67359,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -65851,6 +67379,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -65960,6 +67492,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -65984,7 +67525,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -66006,6 +67547,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -66016,6 +67559,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta1/namespaces/{namespace}/deployments").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -66190,9 +67741,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -66236,6 +67784,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -66260,7 +67811,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDeployment1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -66275,12 +67826,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -66299,10 +67850,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -66323,6 +67870,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -66616,6 +68167,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -66640,7 +68197,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeployment1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -66666,6 +68223,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -66678,6 +68236,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -66806,14 +68368,14 @@ namespace k8s /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -66866,12 +68428,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDeployment1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDeployment1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -67056,6 +68614,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -67080,7 +68644,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeployment1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeployment1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -67102,6 +68666,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -67114,6 +68679,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -67232,6 +68801,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -67256,7 +68835,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDeploymentRollbackWithHttpMessagesAsync(Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDeploymentRollbackWithHttpMessagesAsync(Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -67282,6 +68861,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -67294,6 +68875,14 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -67373,7 +68962,7 @@ namespace k8s throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -67382,7 +68971,7 @@ namespace k8s _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -67400,7 +68989,7 @@ namespace k8s _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -67418,7 +69007,7 @@ namespace k8s _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -67611,6 +69200,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -67635,7 +69230,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -67661,6 +69256,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -67673,6 +69269,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -67809,6 +69409,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -67833,7 +69439,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -67855,6 +69461,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -67867,6 +69474,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -68148,6 +69759,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -68172,7 +69789,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentStatus1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentStatus1WithHttpMessagesAsync(Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -68198,6 +69815,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -68210,6 +69828,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -68346,6 +69968,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -68370,7 +69998,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -68392,6 +70020,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -68404,6 +70033,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -68542,9 +70175,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -68588,6 +70218,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -68612,7 +70245,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -68627,12 +70260,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -68651,10 +70284,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -68675,6 +70304,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -68784,6 +70417,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -68808,7 +70450,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -68830,6 +70472,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -68840,6 +70484,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta1/namespaces/{namespace}/statefulsets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -69014,9 +70666,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -69060,6 +70709,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -69084,7 +70736,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedStatefulSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -69099,12 +70751,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -69123,10 +70775,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -69147,6 +70795,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -69440,6 +71092,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -69464,7 +71122,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSet1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -69490,6 +71148,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -69502,6 +71161,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -69630,14 +71293,14 @@ namespace k8s /// /// delete a StatefulSet /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -69690,12 +71353,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedStatefulSet1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedStatefulSet1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -69880,6 +71539,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -69904,7 +71569,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -69926,6 +71591,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -69938,6 +71604,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -70219,6 +71889,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -70243,7 +71919,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetScale1WithHttpMessagesAsync(Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -70269,6 +71945,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -70281,6 +71958,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -70417,6 +72098,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -70441,7 +72128,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -70463,6 +72150,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -70475,6 +72163,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -70756,6 +72448,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -70780,7 +72478,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -70806,6 +72504,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -70818,6 +72517,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -70954,6 +72657,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -70978,7 +72687,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -71000,6 +72709,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -71012,6 +72722,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -72276,9 +73990,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -72322,6 +74033,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -72346,7 +74060,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -72361,12 +74075,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -72385,10 +74099,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -72409,6 +74119,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -72518,6 +74232,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -72542,7 +74265,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -72564,6 +74287,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -72574,6 +74299,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta2/namespaces/{namespace}/controllerrevisions").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -72748,9 +74481,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -72794,6 +74524,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -72818,7 +74551,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedControllerRevision2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -72833,12 +74566,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -72857,10 +74590,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -72881,6 +74610,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -73174,6 +74907,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -73198,7 +74937,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedControllerRevision2WithHttpMessagesAsync(V1beta2ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -73224,6 +74963,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -73236,6 +74976,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -73364,14 +75108,14 @@ namespace k8s /// /// delete a ControllerRevision /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -73424,12 +75168,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedControllerRevision2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedControllerRevision2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -73614,6 +75354,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -73638,7 +75384,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedControllerRevision2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedControllerRevision2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -73660,6 +75406,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -73672,6 +75419,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -73810,9 +75561,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -73856,6 +75604,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -73880,7 +75631,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -73895,12 +75646,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -73919,10 +75670,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -73943,6 +75690,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -74052,6 +75803,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -74076,7 +75836,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -74098,6 +75858,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -74108,6 +75870,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta2/namespaces/{namespace}/daemonsets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -74282,9 +76052,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -74328,6 +76095,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -74352,7 +76122,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDaemonSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -74367,12 +76137,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -74391,10 +76161,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -74415,6 +76181,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -74708,6 +76478,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -74732,7 +76508,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDaemonSet1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -74758,6 +76534,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -74770,6 +76547,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -74898,14 +76679,14 @@ namespace k8s /// /// delete a DaemonSet /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -74958,12 +76739,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDaemonSet1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDaemonSet1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -75148,6 +76925,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -75172,7 +76955,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDaemonSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -75194,6 +76977,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -75206,6 +76990,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -75487,6 +77275,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -75511,7 +77305,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -75537,6 +77331,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -75549,6 +77344,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -75685,6 +77484,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -75709,7 +77514,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -75731,6 +77536,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -75743,6 +77549,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -75881,9 +77691,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -75927,6 +77734,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -75951,7 +77761,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -75966,12 +77776,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -75990,10 +77800,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -76014,6 +77820,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -76123,6 +77933,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -76147,7 +77966,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -76169,6 +77988,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -76179,6 +78000,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta2/namespaces/{namespace}/deployments").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -76353,9 +78182,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -76399,6 +78225,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -76423,7 +78252,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDeployment2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -76438,12 +78267,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -76462,10 +78291,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -76486,6 +78311,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -76779,6 +78608,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -76803,7 +78638,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeployment2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -76829,6 +78664,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -76841,6 +78677,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -76969,14 +78809,14 @@ namespace k8s /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -77029,12 +78869,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDeployment2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDeployment2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -77219,6 +79055,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -77243,7 +79085,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeployment2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeployment2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -77265,6 +79107,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -77277,6 +79120,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -77558,6 +79405,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -77582,7 +79435,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -77608,6 +79461,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -77620,6 +79474,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -77756,6 +79614,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -77780,7 +79644,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -77802,6 +79666,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -77814,6 +79679,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -78095,6 +79964,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -78119,7 +79994,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentStatus2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentStatus2WithHttpMessagesAsync(V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -78145,6 +80020,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -78157,6 +80033,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -78293,6 +80173,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -78317,7 +80203,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -78339,6 +80225,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -78351,6 +80238,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -78489,9 +80380,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -78535,6 +80423,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -78559,7 +80450,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -78574,12 +80465,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -78598,10 +80489,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -78622,6 +80509,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -78731,6 +80622,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -78755,7 +80655,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -78777,6 +80677,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -78787,6 +80689,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta2/namespaces/{namespace}/replicasets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -78961,9 +80871,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -79007,6 +80914,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -79031,7 +80941,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedReplicaSet1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -79046,12 +80956,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -79070,10 +80980,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -79094,6 +81000,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -79387,6 +81297,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -79411,7 +81327,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSet1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -79437,6 +81353,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -79449,6 +81366,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -79577,14 +81498,14 @@ namespace k8s /// /// delete a ReplicaSet /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -79637,12 +81558,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedReplicaSet1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedReplicaSet1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -79827,6 +81744,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -79851,7 +81774,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSet1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -79873,6 +81796,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -79885,6 +81809,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -80166,6 +82094,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -80190,7 +82124,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetScale1WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetScale1WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -80216,6 +82150,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -80228,6 +82163,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -80364,6 +82303,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -80388,7 +82333,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -80410,6 +82355,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -80422,6 +82368,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -80703,6 +82653,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -80727,7 +82683,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -80753,6 +82709,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -80765,6 +82722,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -80901,6 +82862,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -80925,7 +82892,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -80947,6 +82914,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -80959,6 +82927,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -81097,9 +83069,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -81143,6 +83112,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -81167,7 +83139,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -81182,12 +83154,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -81206,10 +83178,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -81230,6 +83198,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -81339,6 +83311,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -81363,7 +83344,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -81385,6 +83366,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -81395,6 +83378,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/apps/v1beta2/namespaces/{namespace}/statefulsets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -81569,9 +83560,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -81615,6 +83603,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -81639,7 +83630,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedStatefulSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -81654,12 +83645,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -81678,10 +83669,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -81702,6 +83689,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -81995,6 +83986,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -82019,7 +84016,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSet2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -82045,6 +84042,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -82057,6 +84055,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -82185,14 +84187,14 @@ namespace k8s /// /// delete a StatefulSet /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -82245,12 +84247,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedStatefulSet2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedStatefulSet2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -82435,6 +84433,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -82459,7 +84463,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -82481,6 +84485,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -82493,6 +84498,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -82774,6 +84783,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -82798,7 +84813,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetScale2WithHttpMessagesAsync(V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -82824,6 +84839,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -82836,6 +84852,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -82972,6 +84992,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -82996,7 +85022,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -83018,6 +85044,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -83030,6 +85057,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -83311,6 +85342,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -83335,7 +85372,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -83361,6 +85398,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -83373,6 +85411,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -83509,6 +85551,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -83533,7 +85581,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedStatefulSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -83555,6 +85603,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -83567,6 +85616,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -84206,7 +86259,7 @@ namespace k8s } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authentication.k8s.io/").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/").ToString(); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; @@ -84332,6 +86385,1754 @@ namespace k8s } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/").ToString(); + // 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// list or watch objects of kind AuditSink + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListAuditSinkWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("continueParameter", continueParameter); + tracingParameters.Add("fieldSelector", fieldSelector); + tracingParameters.Add("labelSelector", labelSelector); + tracingParameters.Add("limit", limit); + tracingParameters.Add("resourceVersion", resourceVersion); + tracingParameters.Add("timeoutSeconds", timeoutSeconds); + tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks").ToString(); + List _queryParameters = new List(); + if (continueParameter != null) + { + _queryParameters.Add(string.Format("continue={0}", System.Uri.EscapeDataString(continueParameter))); + } + if (fieldSelector != null) + { + _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); + } + if (labelSelector != null) + { + _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); + } + if (limit != null) + { + _queryParameters.Add(string.Format("limit={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(limit, SerializationSettings).Trim('"')))); + } + if (resourceVersion != null) + { + _queryParameters.Add(string.Format("resourceVersion={0}", System.Uri.EscapeDataString(resourceVersion))); + } + if (timeoutSeconds != null) + { + _queryParameters.Add(string.Format("timeoutSeconds={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timeoutSeconds, SerializationSettings).Trim('"')))); + } + if (watch != null) + { + _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 401) + { + 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 an AuditSink + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> CreateAuditSinkWithHttpMessagesAsync(V1alpha1AuditSink body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (body != null) + { + body.Validate(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks").ToString(); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // 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 != 200 && (int)_statusCode != 201 && (int)_statusCode != 202 && (int)_statusCode != 401) + { + 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); + } + } + // 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); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _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; + } + + /// + /// delete collection of AuditSink + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DeleteCollectionAuditSinkWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("continueParameter", continueParameter); + tracingParameters.Add("fieldSelector", fieldSelector); + tracingParameters.Add("labelSelector", labelSelector); + tracingParameters.Add("limit", limit); + tracingParameters.Add("resourceVersion", resourceVersion); + tracingParameters.Add("timeoutSeconds", timeoutSeconds); + tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks").ToString(); + List _queryParameters = new List(); + if (continueParameter != null) + { + _queryParameters.Add(string.Format("continue={0}", System.Uri.EscapeDataString(continueParameter))); + } + if (fieldSelector != null) + { + _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); + } + if (labelSelector != null) + { + _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); + } + if (limit != null) + { + _queryParameters.Add(string.Format("limit={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(limit, SerializationSettings).Trim('"')))); + } + if (resourceVersion != null) + { + _queryParameters.Add(string.Format("resourceVersion={0}", System.Uri.EscapeDataString(resourceVersion))); + } + if (timeoutSeconds != null) + { + _queryParameters.Add(string.Format("timeoutSeconds={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timeoutSeconds, SerializationSettings).Trim('"')))); + } + if (watch != null) + { + _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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; + // 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// read the specified AuditSink + /// + /// + /// name of the AuditSink + /// + /// + /// Should the export be exact. Exact export maintains cluster-specific fields + /// like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user can not + /// specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> ReadAuditSinkWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("exact", exact); + tracingParameters.Add("export", export); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ReadAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (exact != null) + { + _queryParameters.Add(string.Format("exact={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(exact, SerializationSettings).Trim('"')))); + } + if (export != null) + { + _queryParameters.Add(string.Format("export={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(export, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// replace the specified AuditSink + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> ReplaceAuditSinkWithHttpMessagesAsync(V1alpha1AuditSink body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (body != null) + { + body.Validate(); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // 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 != 200 && (int)_statusCode != 201 && (int)_statusCode != 401) + { + 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); + } + } + // 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; + } + + /// + /// delete an AuditSink + /// + /// + /// name of the AuditSink + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// 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. Acceptable values are: 'Orphan' - orphan + /// the dependents; 'Background' - allow the garbage collector to delete the + /// dependents in the background; 'Foreground' - a cascading policy that + /// deletes all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> DeleteAuditSinkWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("gracePeriodSeconds", gracePeriodSeconds); + tracingParameters.Add("orphanDependents", orphanDependents); + tracingParameters.Add("propagationPolicy", propagationPolicy); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + 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 (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 202 && (int)_statusCode != 401) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _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; + } + + /// + /// partially update the specified AuditSink + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> PatchAuditSinkWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "PatchAuditSink", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _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-patch+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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// get information of a group + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetAPIGroup5WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup5", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authentication.k8s.io/").ToString(); + // 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// get available resources + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetAPIResources10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources10", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authentication.k8s.io/v1/").ToString(); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); @@ -84431,6 +88232,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -84455,7 +88266,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateTokenReviewWithHttpMessagesAsync(V1TokenReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateTokenReviewWithHttpMessagesAsync(V1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -84473,6 +88284,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateTokenReview", tracingParameters); @@ -84481,6 +88294,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authentication.k8s.io/v1/tokenreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -84642,7 +88463,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -84652,7 +88473,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources10", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources11", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -84755,6 +88576,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -84779,7 +88610,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateTokenReview1WithHttpMessagesAsync(V1beta1TokenReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateTokenReview1WithHttpMessagesAsync(V1beta1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -84797,6 +88628,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateTokenReview1", tracingParameters); @@ -84805,6 +88638,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authentication.k8s.io/v1beta1/tokenreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -84966,7 +88807,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup5WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup6WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -84976,7 +88817,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup5", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup6", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -85092,7 +88933,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -85102,7 +88943,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources11", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources12", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -85208,6 +89049,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -85232,7 +89083,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedLocalSubjectAccessReviewWithHttpMessagesAsync(V1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedLocalSubjectAccessReviewWithHttpMessagesAsync(V1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -85254,6 +89105,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -85264,6 +89117,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1/namespaces/{namespace}/localsubjectaccessreviews").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -85412,6 +89273,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -85436,7 +89307,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateSelfSubjectAccessReviewWithHttpMessagesAsync(V1SelfSubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateSelfSubjectAccessReviewWithHttpMessagesAsync(V1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -85454,6 +89325,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateSelfSubjectAccessReview", tracingParameters); @@ -85462,6 +89335,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1/selfsubjectaccessreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -85610,6 +89491,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -85634,7 +89525,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateSelfSubjectRulesReviewWithHttpMessagesAsync(V1SelfSubjectRulesReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateSelfSubjectRulesReviewWithHttpMessagesAsync(V1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -85652,6 +89543,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateSelfSubjectRulesReview", tracingParameters); @@ -85660,6 +89553,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1/selfsubjectrulesreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -85808,6 +89709,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -85832,7 +89743,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateSubjectAccessReviewWithHttpMessagesAsync(V1SubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateSubjectAccessReviewWithHttpMessagesAsync(V1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -85850,6 +89761,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateSubjectAccessReview", tracingParameters); @@ -85858,6 +89771,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1/subjectaccessreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -86019,7 +89940,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -86029,7 +89950,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources12", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources13", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -86135,6 +90056,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -86159,7 +90090,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedLocalSubjectAccessReview1WithHttpMessagesAsync(V1beta1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedLocalSubjectAccessReview1WithHttpMessagesAsync(V1beta1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -86181,6 +90112,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -86191,6 +90124,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1beta1/namespaces/{namespace}/localsubjectaccessreviews").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -86339,6 +90280,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -86363,7 +90314,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateSelfSubjectAccessReview1WithHttpMessagesAsync(V1beta1SelfSubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateSelfSubjectAccessReview1WithHttpMessagesAsync(V1beta1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -86381,6 +90332,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateSelfSubjectAccessReview1", tracingParameters); @@ -86389,6 +90342,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -86537,6 +90498,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -86561,7 +90532,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateSelfSubjectRulesReview1WithHttpMessagesAsync(V1beta1SelfSubjectRulesReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateSelfSubjectRulesReview1WithHttpMessagesAsync(V1beta1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -86579,6 +90550,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateSelfSubjectRulesReview1", tracingParameters); @@ -86587,6 +90560,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -86735,6 +90716,16 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -86759,7 +90750,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateSubjectAccessReview1WithHttpMessagesAsync(V1beta1SubjectAccessReview body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateSubjectAccessReview1WithHttpMessagesAsync(V1beta1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -86777,6 +90768,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateSubjectAccessReview1", tracingParameters); @@ -86785,6 +90778,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/authorization.k8s.io/v1beta1/subjectaccessreviews").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -86946,7 +90947,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup6WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup7WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -86956,7 +90957,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup6", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup7", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -87072,7 +91073,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -87082,7 +91083,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources13", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources14", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -87461,9 +91462,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -87507,6 +91505,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -87531,7 +91532,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -87546,12 +91547,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -87570,10 +91571,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -87594,6 +91591,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -87703,6 +91704,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -87727,7 +91737,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -87749,6 +91759,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -87759,6 +91771,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/autoscaling/v1/namespaces/{namespace}/horizontalpodautoscalers").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -87933,9 +91953,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -87979,6 +91996,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -88003,7 +92023,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -88018,12 +92038,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -88042,10 +92062,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -88066,6 +92082,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -88359,6 +92379,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -88383,7 +92409,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -88409,6 +92435,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -88421,6 +92448,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -88549,14 +92580,14 @@ namespace k8s /// /// delete a HorizontalPodAutoscaler /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -88609,12 +92640,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -88799,6 +92826,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -88823,7 +92856,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -88845,6 +92878,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -88857,6 +92891,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -89138,6 +93176,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -89162,7 +93206,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -89188,6 +93232,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -89200,6 +93245,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -89336,6 +93385,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -89360,7 +93415,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -89382,6 +93437,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -89394,6 +93450,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -89519,7 +93579,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -89529,7 +93589,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources14", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources15", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -89908,9 +93968,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -89954,6 +94011,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -89978,7 +94038,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -89993,12 +94053,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -90017,10 +94077,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -90041,6 +94097,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -90150,6 +94210,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -90174,7 +94243,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -90196,6 +94265,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -90206,6 +94277,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/autoscaling/v2beta1/namespaces/{namespace}/horizontalpodautoscalers").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -90380,9 +94459,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -90426,6 +94502,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -90450,7 +94529,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -90465,12 +94544,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -90489,10 +94568,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -90513,6 +94588,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -90806,6 +94885,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -90830,7 +94915,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -90856,6 +94941,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -90868,6 +94954,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -90996,14 +95086,14 @@ namespace k8s /// /// delete a HorizontalPodAutoscaler /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -91056,12 +95146,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -91246,6 +95332,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -91270,7 +95362,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -91292,6 +95384,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -91304,6 +95397,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -91585,6 +95682,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -91609,7 +95712,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -91635,6 +95738,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -91647,6 +95751,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -91783,6 +95891,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -91807,7 +95921,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -91829,6 +95943,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -91841,6 +95956,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -91966,7 +96085,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -91976,7 +96095,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources15", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources16", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -92355,9 +96474,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -92401,6 +96517,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -92425,7 +96544,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -92440,12 +96559,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -92464,10 +96583,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -92488,6 +96603,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -92597,6 +96716,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -92621,7 +96749,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -92643,6 +96771,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -92653,6 +96783,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/autoscaling/v2beta2/namespaces/{namespace}/horizontalpodautoscalers").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -92827,9 +96965,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -92873,6 +97008,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -92897,7 +97035,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -92912,12 +97050,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -92936,10 +97074,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -92960,6 +97094,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -93253,6 +97391,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -93277,7 +97421,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -93303,6 +97447,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -93315,6 +97460,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -93443,14 +97592,14 @@ namespace k8s /// /// delete a HorizontalPodAutoscaler /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -93503,12 +97652,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -93693,6 +97838,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -93717,7 +97868,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -93739,6 +97890,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -93751,6 +97903,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -94032,6 +98188,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -94056,7 +98218,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -94082,6 +98244,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -94094,6 +98257,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -94230,6 +98397,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -94254,7 +98427,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -94276,6 +98449,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -94288,6 +98462,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -94413,7 +98591,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup7WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup8WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -94423,7 +98601,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup7", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup8", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -94539,7 +98717,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -94549,7 +98727,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources16", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources17", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -94928,9 +99106,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -94974,6 +99149,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -94998,7 +99176,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -95013,12 +99191,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -95037,10 +99215,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -95061,6 +99235,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -95170,6 +99348,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -95194,7 +99381,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedJobWithHttpMessagesAsync(V1Job body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedJobWithHttpMessagesAsync(V1Job body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -95216,6 +99403,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -95226,6 +99415,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/batch/v1/namespaces/{namespace}/jobs").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -95400,9 +99597,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -95446,6 +99640,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -95470,7 +99667,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -95485,12 +99682,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -95509,10 +99706,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -95533,6 +99726,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -95826,6 +100023,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -95850,7 +100053,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedJobWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedJobWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -95876,6 +100079,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -95888,6 +100092,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -96016,14 +100224,14 @@ namespace k8s /// /// delete a Job /// - /// - /// /// /// name of the Job /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -96076,12 +100284,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedJobWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedJobWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -96266,6 +100470,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -96290,7 +100500,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -96312,6 +100522,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -96324,6 +100535,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -96605,6 +100820,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -96629,7 +100850,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedJobStatusWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedJobStatusWithHttpMessagesAsync(V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -96655,6 +100876,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -96667,6 +100889,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -96803,6 +101029,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -96827,7 +101059,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -96849,6 +101081,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -96861,6 +101094,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -96986,7 +101223,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources18WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -96996,7 +101233,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources17", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources18", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -97375,9 +101612,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -97421,6 +101655,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -97445,7 +101682,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -97460,12 +101697,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -97484,10 +101721,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -97508,6 +101741,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -97617,6 +101854,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -97641,7 +101887,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -97663,6 +101909,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -97673,6 +101921,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/batch/v1beta1/namespaces/{namespace}/cronjobs").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -97847,9 +102103,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -97893,6 +102146,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -97917,7 +102173,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedCronJobWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -97932,12 +102188,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -97956,10 +102212,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -97980,6 +102232,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -98273,6 +102529,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -98297,7 +102559,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedCronJobWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -98323,6 +102585,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -98335,6 +102598,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -98463,14 +102730,14 @@ namespace k8s /// /// delete a CronJob /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -98523,12 +102790,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedCronJobWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedCronJobWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -98713,6 +102976,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -98737,7 +103006,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedCronJobWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -98759,6 +103028,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -98771,6 +103041,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -99052,6 +103326,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -99076,7 +103356,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedCronJobStatusWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedCronJobStatusWithHttpMessagesAsync(V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -99102,6 +103382,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -99114,6 +103395,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -99250,6 +103535,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -99274,7 +103565,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedCronJobStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -99296,6 +103587,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -99308,6 +103600,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -99433,7 +103729,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources18WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources19WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -99443,7 +103739,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources18", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources19", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -99822,9 +104118,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -99868,6 +104161,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -99892,7 +104188,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -99907,12 +104203,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -99931,10 +104227,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -99955,6 +104247,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -100064,6 +104360,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -100088,7 +104393,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -100110,6 +104415,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -100120,6 +104427,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/batch/v2alpha1/namespaces/{namespace}/cronjobs").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -100294,9 +104609,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -100340,6 +104652,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -100364,7 +104679,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedCronJob1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -100379,12 +104694,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -100403,10 +104718,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -100427,6 +104738,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -100720,6 +105035,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -100744,7 +105065,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedCronJob1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -100770,6 +105091,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -100782,6 +105104,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -100910,14 +105236,14 @@ namespace k8s /// /// delete a CronJob /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -100970,12 +105296,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedCronJob1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedCronJob1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -101160,6 +105482,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -101184,7 +105512,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJob1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedCronJob1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -101206,6 +105534,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -101218,6 +105547,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -101499,6 +105832,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -101523,7 +105862,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedCronJobStatus1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedCronJobStatus1WithHttpMessagesAsync(V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -101549,6 +105888,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -101561,6 +105901,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -101697,6 +106041,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -101721,7 +106071,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJobStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedCronJobStatus1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -101743,6 +106093,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -101755,6 +106106,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -101880,7 +106235,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup8WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup9WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -101890,7 +106245,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup8", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup9", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -102006,7 +106361,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources19WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources20WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -102016,7 +106371,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources19", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources20", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -102142,9 +106497,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -102188,6 +106540,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -102206,7 +106561,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -102217,12 +106572,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListCertificateSigningRequest", tracingParameters); @@ -102239,10 +106594,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -102263,6 +106614,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -102369,6 +106724,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -102393,7 +106757,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -102411,6 +106775,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateCertificateSigningRequest", tracingParameters); @@ -102419,6 +106785,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/certificates.k8s.io/v1beta1/certificatesigningrequests").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -102590,9 +106964,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -102636,6 +107007,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -102654,7 +107028,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionCertificateSigningRequestWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -102665,12 +107039,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionCertificateSigningRequest", tracingParameters); @@ -102687,10 +107061,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -102711,6 +107081,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -102992,6 +107366,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -103016,7 +107396,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceCertificateSigningRequestWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -103038,6 +107418,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -103048,6 +107429,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -103176,11 +107561,11 @@ namespace k8s /// /// delete a CertificateSigningRequest /// - /// - /// /// /// name of the CertificateSigningRequest /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -103233,12 +107618,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCertificateSigningRequestWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCertificateSigningRequestWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -103414,6 +107795,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -103438,7 +107825,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchCertificateSigningRequestWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchCertificateSigningRequestWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -103456,6 +107843,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -103466,6 +107854,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -103581,6 +107973,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -103605,7 +108003,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceCertificateSigningRequestApprovalWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceCertificateSigningRequestApprovalWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -103627,6 +108025,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -103637,6 +108036,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/approval").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -103924,6 +108327,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -103948,7 +108357,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceCertificateSigningRequestStatusWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceCertificateSigningRequestStatusWithHttpMessagesAsync(V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -103970,6 +108379,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -103980,6 +108390,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -104113,6 +108527,12 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -104137,7 +108557,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchCertificateSigningRequestStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchCertificateSigningRequestStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -104155,6 +108575,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -104165,6 +108586,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{name}/status").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -104290,7 +108715,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup9WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -104300,7 +108725,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup9", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup10", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -104416,7 +108841,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources20WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources21WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -104426,7 +108851,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources20", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources21", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -104805,9 +109230,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -104851,6 +109273,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -104875,7 +109300,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -104890,12 +109315,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -104914,10 +109339,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -104938,6 +109359,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -105047,6 +109472,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -105071,7 +109505,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -105093,6 +109527,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -105103,6 +109539,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/coordination.k8s.io/v1beta1/namespaces/{namespace}/leases").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -105277,9 +109721,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -105323,6 +109764,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -105347,7 +109791,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedLeaseWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -105362,12 +109806,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -105386,10 +109830,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -105410,6 +109850,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -105703,6 +110147,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -105727,7 +110177,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedLeaseWithHttpMessagesAsync(V1beta1Lease body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -105753,6 +110203,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -105765,6 +110216,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -105893,14 +110348,14 @@ namespace k8s /// /// delete a Lease /// - /// - /// /// /// name of the Lease /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -105953,12 +110408,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedLeaseWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedLeaseWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -106143,6 +110594,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -106167,7 +110624,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedLeaseWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedLeaseWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -106189,6 +110646,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -106201,6 +110659,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -106326,7 +110788,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup10WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -106336,7 +110798,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup10", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup11", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -106452,7 +110914,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources21WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources22WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -106462,7 +110924,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources21", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources22", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -106841,9 +111303,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -106887,6 +111346,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -106911,7 +111373,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -106926,12 +111388,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -106950,10 +111412,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -106974,6 +111432,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -107083,6 +111545,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -107107,7 +111578,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -107129,6 +111600,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -107139,6 +111612,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/events.k8s.io/v1beta1/namespaces/{namespace}/events").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -107313,9 +111794,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -107359,6 +111837,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -107383,7 +111864,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedEvent1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -107398,12 +111879,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -107422,10 +111903,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -107446,6 +111923,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -107739,6 +112220,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -107763,7 +112250,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedEvent1WithHttpMessagesAsync(V1beta1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -107789,6 +112276,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -107801,6 +112289,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -107929,14 +112421,14 @@ namespace k8s /// /// delete an Event /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -107989,12 +112481,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedEvent1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedEvent1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -108179,6 +112667,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -108203,7 +112697,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedEvent1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedEvent1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -108225,6 +112719,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -108237,6 +112732,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -108362,7 +112861,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup11WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -108372,7 +112871,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup11", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup12", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -108488,7 +112987,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources22WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources23WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -108498,7 +112997,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources22", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources23", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -109377,9 +113876,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -109423,6 +113919,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -109447,7 +113946,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -109462,12 +113961,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -109486,10 +113985,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -109510,6 +114005,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -109619,6 +114118,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -109643,7 +114151,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -109665,6 +114173,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -109675,6 +114185,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/namespaces/{namespace}/daemonsets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -109849,9 +114367,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -109895,6 +114410,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -109919,7 +114437,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDaemonSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -109934,12 +114452,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -109958,10 +114476,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -109982,6 +114496,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -110275,6 +114793,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -110299,7 +114823,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDaemonSet2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -110325,6 +114849,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -110337,6 +114862,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -110465,14 +114994,14 @@ namespace k8s /// /// delete a DaemonSet /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -110525,12 +115054,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDaemonSet2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDaemonSet2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -110715,6 +115240,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -110739,7 +115270,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDaemonSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -110761,6 +115292,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -110773,6 +115305,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -111054,6 +115590,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -111078,7 +115620,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -111104,6 +115646,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -111116,6 +115659,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -111252,6 +115799,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -111276,7 +115829,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDaemonSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -111298,6 +115851,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -111310,6 +115864,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -111448,9 +116006,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -111494,6 +116049,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -111518,7 +116076,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -111533,12 +116091,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -111557,10 +116115,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -111581,6 +116135,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -111690,6 +116248,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -111714,7 +116281,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -111736,6 +116303,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -111746,6 +116315,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/namespaces/{namespace}/deployments").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -111920,9 +116497,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -111966,6 +116540,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -111990,7 +116567,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedDeployment3WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -112005,12 +116582,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -112029,10 +116606,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -112053,6 +116626,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -112346,6 +116923,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -112370,7 +116953,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeployment3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -112396,6 +116979,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -112408,6 +116992,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -112536,14 +117124,14 @@ namespace k8s /// /// delete a Deployment /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -112596,12 +117184,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedDeployment3WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedDeployment3WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -112786,6 +117370,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -112810,7 +117400,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeployment3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeployment3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -112832,6 +117422,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -112844,6 +117435,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -112962,6 +117557,16 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// @@ -112986,7 +117591,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedDeploymentRollback1WithHttpMessagesAsync(Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedDeploymentRollback1WithHttpMessagesAsync(Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -113012,6 +117617,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -113024,6 +117631,14 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -113103,7 +117718,7 @@ namespace k8s throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -113112,7 +117727,7 @@ namespace k8s _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -113130,7 +117745,7 @@ namespace k8s _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -113148,7 +117763,7 @@ namespace k8s _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -113341,6 +117956,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -113365,7 +117986,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentScale3WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentScale3WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -113391,6 +118012,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -113403,6 +118025,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -113539,6 +118165,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -113563,7 +118195,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScale3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentScale3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -113585,6 +118217,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -113597,6 +118230,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -113878,6 +118515,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -113902,7 +118545,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedDeploymentStatus3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedDeploymentStatus3WithHttpMessagesAsync(Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -113928,6 +118571,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -113940,6 +118584,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -114076,6 +118724,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -114100,7 +118754,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatus3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedDeploymentStatus3WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -114122,6 +118776,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -114134,6 +118789,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -114272,9 +118931,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -114318,6 +118974,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -114342,7 +119001,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -114357,12 +119016,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -114381,10 +119040,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -114405,6 +119060,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -114514,6 +119173,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -114538,7 +119206,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -114560,6 +119228,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -114570,6 +119240,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/namespaces/{namespace}/ingresses").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -114744,9 +119422,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -114790,6 +119465,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -114814,7 +119492,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedIngressWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -114829,12 +119507,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -114853,10 +119531,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -114877,6 +119551,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -115170,6 +119848,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -115194,7 +119878,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedIngressWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -115220,6 +119904,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -115232,6 +119917,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -115360,14 +120049,14 @@ namespace k8s /// /// delete an Ingress /// - /// - /// /// /// name of the Ingress /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -115420,12 +120109,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedIngressWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedIngressWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -115610,6 +120295,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -115634,7 +120325,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedIngressWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedIngressWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -115656,6 +120347,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -115668,6 +120360,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -115949,6 +120645,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -115973,7 +120675,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedIngressStatusWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedIngressStatusWithHttpMessagesAsync(V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -115999,6 +120701,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -116011,6 +120714,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -116147,6 +120854,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -116171,7 +120884,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedIngressStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedIngressStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -116193,6 +120906,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -116205,6 +120919,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -116343,9 +121061,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -116389,6 +121104,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -116413,7 +121131,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -116428,12 +121146,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -116452,10 +121170,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -116476,6 +121190,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -116585,6 +121303,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -116609,7 +121336,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -116631,6 +121358,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -116641,6 +121370,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/namespaces/{namespace}/networkpolicies").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -116815,9 +121552,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -116861,6 +121595,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -116885,7 +121622,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedNetworkPolicyWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -116900,12 +121637,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -116924,10 +121661,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -116948,6 +121681,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -117241,6 +121978,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -117265,7 +122008,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedNetworkPolicyWithHttpMessagesAsync(V1beta1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -117291,6 +122034,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -117303,6 +122047,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -117431,14 +122179,14 @@ namespace k8s /// /// delete a NetworkPolicy /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -117491,12 +122239,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedNetworkPolicyWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedNetworkPolicyWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -117681,6 +122425,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -117705,7 +122455,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedNetworkPolicyWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedNetworkPolicyWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -117727,6 +122477,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -117739,6 +122490,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -117877,9 +122632,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -117923,6 +122675,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -117947,7 +122702,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -117962,12 +122717,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -117986,10 +122741,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -118010,6 +122761,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -118119,6 +122874,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -118143,7 +122907,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -118165,6 +122929,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -118175,6 +122941,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/namespaces/{namespace}/replicasets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -118349,9 +123123,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -118395,6 +123166,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -118419,7 +123193,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedReplicaSet2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -118434,12 +123208,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -118458,10 +123232,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -118482,6 +123252,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -118775,6 +123549,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -118799,7 +123579,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSet2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -118825,6 +123605,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -118837,6 +123618,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -118965,14 +123750,14 @@ namespace k8s /// /// delete a ReplicaSet /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -119025,12 +123810,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedReplicaSet2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedReplicaSet2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -119215,6 +123996,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -119239,7 +124026,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSet2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -119261,6 +124048,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -119273,6 +124061,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -119554,6 +124346,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -119578,7 +124376,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetScale2WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetScale2WithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -119604,6 +124402,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -119616,6 +124415,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -119752,6 +124555,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -119776,7 +124585,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetScale2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -119798,6 +124607,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -119810,6 +124620,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -120091,6 +124905,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -120115,7 +124935,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -120141,6 +124961,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -120153,6 +124974,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -120289,6 +125114,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -120313,7 +125144,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicaSetStatus2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -120335,6 +125166,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -120347,6 +125179,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -120628,6 +125464,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -120652,7 +125494,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -120678,6 +125520,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -120690,6 +125533,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -120826,6 +125673,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -120850,7 +125703,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -120872,6 +125725,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -120884,6 +125738,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -121269,9 +126127,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -121315,6 +126170,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -121333,7 +126191,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -121344,12 +126202,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListPodSecurityPolicy", tracingParameters); @@ -121366,10 +126224,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -121390,6 +126244,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -121496,6 +126354,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -121520,7 +126387,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreatePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreatePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -121538,6 +126405,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreatePodSecurityPolicy", tracingParameters); @@ -121546,6 +126415,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/podsecuritypolicies").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -121717,9 +126594,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -121763,6 +126637,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -121781,7 +126658,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionPodSecurityPolicyWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -121792,12 +126669,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionPodSecurityPolicy", tracingParameters); @@ -121814,10 +126691,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -121838,6 +126711,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -122119,6 +126996,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -122143,7 +127026,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplacePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplacePodSecurityPolicyWithHttpMessagesAsync(Extensionsv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -122165,6 +127048,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -122175,6 +127059,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/podsecuritypolicies/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -122303,11 +127191,11 @@ namespace k8s /// /// delete a PodSecurityPolicy /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -122360,12 +127248,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeletePodSecurityPolicyWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeletePodSecurityPolicyWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -122541,6 +127425,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -122565,7 +127455,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchPodSecurityPolicyWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPodSecurityPolicyWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -122583,6 +127473,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -122593,6 +127484,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/extensions/v1beta1/podsecuritypolicies/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -122968,7 +127863,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup12WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -122978,7 +127873,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup12", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup13", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -123094,7 +127989,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources23WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources24WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -123104,7 +127999,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources23", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources24", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -123233,9 +128128,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -123279,6 +128171,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -123303,7 +128198,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -123318,12 +128213,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -123342,10 +128237,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -123366,6 +128257,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -123475,6 +128370,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -123499,7 +128403,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -123521,6 +128425,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -123531,6 +128437,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/networking.k8s.io/v1/namespaces/{namespace}/networkpolicies").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -123705,9 +128619,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -123751,6 +128662,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -123775,7 +128689,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedNetworkPolicy1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -123790,12 +128704,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -123814,10 +128728,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -123838,6 +128748,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -124131,6 +129045,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -124155,7 +129075,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedNetworkPolicy1WithHttpMessagesAsync(V1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -124181,6 +129101,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -124193,6 +129114,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -124321,14 +129246,14 @@ namespace k8s /// /// delete a NetworkPolicy /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -124381,12 +129306,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedNetworkPolicy1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedNetworkPolicy1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -124571,6 +129492,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -124595,7 +129522,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -124617,6 +129544,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -124629,6 +129557,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -125004,7 +129936,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup13WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -125014,7 +129946,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup13", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup14", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -125130,7 +130062,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources24WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources25WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -125140,7 +130072,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources24", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources25", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -125269,9 +130201,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -125315,6 +130244,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -125339,7 +130271,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -125354,12 +130286,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -125378,10 +130310,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -125402,6 +130330,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -125511,6 +130443,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -125535,7 +130476,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -125557,6 +130498,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -125567,6 +130510,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/policy/v1beta1/namespaces/{namespace}/poddisruptionbudgets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -125741,9 +130692,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -125787,6 +130735,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -125811,7 +130762,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -125826,12 +130777,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -125850,10 +130801,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -125874,6 +130821,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -126167,6 +131118,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -126191,7 +131148,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -126217,6 +131174,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -126229,6 +131187,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -126357,14 +131319,14 @@ namespace k8s /// /// delete a PodDisruptionBudget /// - /// - /// /// /// name of the PodDisruptionBudget /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -126417,12 +131379,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedPodDisruptionBudgetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -126607,6 +131565,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -126631,7 +131595,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -126653,6 +131617,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -126665,6 +131630,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -126946,6 +131915,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -126970,7 +131945,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -126996,6 +131971,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -127008,6 +131984,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -127144,6 +132124,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -127168,7 +132154,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -127190,6 +132176,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -127202,6 +132189,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -127587,9 +132578,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -127633,6 +132621,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -127651,7 +132642,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -127662,12 +132653,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListPodSecurityPolicy1", tracingParameters); @@ -127684,10 +132675,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -127708,6 +132695,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -127814,6 +132805,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -127838,7 +132838,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreatePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreatePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -127856,6 +132856,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreatePodSecurityPolicy1", tracingParameters); @@ -127864,6 +132866,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/policy/v1beta1/podsecuritypolicies").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -128035,9 +133045,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -128081,6 +133088,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -128099,7 +133109,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionPodSecurityPolicy1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -128110,12 +133120,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionPodSecurityPolicy1", tracingParameters); @@ -128132,10 +133142,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -128156,6 +133162,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -128437,6 +133447,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -128461,7 +133477,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplacePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplacePodSecurityPolicy1WithHttpMessagesAsync(Policyv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -128483,6 +133499,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -128493,6 +133510,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/policy/v1beta1/podsecuritypolicies/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -128621,11 +133642,11 @@ namespace k8s /// /// delete a PodSecurityPolicy /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -128678,12 +133699,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeletePodSecurityPolicy1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeletePodSecurityPolicy1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -128859,6 +133876,12 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -128883,7 +133906,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchPodSecurityPolicy1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPodSecurityPolicy1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -128901,6 +133924,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -128911,6 +133935,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/policy/v1beta1/podsecuritypolicies/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -129036,7 +134064,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup14WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -129046,7 +134074,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup14", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup15", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -129162,7 +134190,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources25WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources26WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -129172,7 +134200,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources25", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources26", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -129298,9 +134326,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -129344,6 +134369,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -129362,7 +134390,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -129373,12 +134401,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListClusterRoleBinding", tracingParameters); @@ -129395,10 +134423,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -129419,6 +134443,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -129525,6 +134553,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -129549,7 +134586,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -129567,6 +134604,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateClusterRoleBinding", tracingParameters); @@ -129575,6 +134614,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/clusterrolebindings").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -129746,9 +134793,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -129792,6 +134836,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -129810,7 +134857,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionClusterRoleBindingWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -129821,12 +134868,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionClusterRoleBinding", tracingParameters); @@ -129843,10 +134890,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -129867,6 +134910,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -130130,6 +135177,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -130154,7 +135207,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceClusterRoleBindingWithHttpMessagesAsync(V1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -130176,6 +135229,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -130186,6 +135240,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -130314,11 +135372,11 @@ namespace k8s /// /// delete a ClusterRoleBinding /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -130371,12 +135429,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteClusterRoleBindingWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteClusterRoleBindingWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -130552,6 +135606,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -130576,7 +135636,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -130594,6 +135654,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -130604,6 +135665,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/clusterrolebindings/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -130739,9 +135804,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -130785,6 +135847,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -130803,7 +135868,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -130814,12 +135879,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListClusterRole", tracingParameters); @@ -130836,10 +135901,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -130860,6 +135921,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -130966,6 +136031,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -130990,7 +136064,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -131008,6 +136082,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateClusterRole", tracingParameters); @@ -131016,6 +136092,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/clusterroles").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -131187,9 +136271,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -131233,6 +136314,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -131251,7 +136335,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionClusterRoleWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -131262,12 +136346,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionClusterRole", tracingParameters); @@ -131284,10 +136368,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -131308,6 +136388,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -131571,6 +136655,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -131595,7 +136685,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceClusterRoleWithHttpMessagesAsync(V1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -131617,6 +136707,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -131627,6 +136718,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/clusterroles/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -131755,11 +136850,11 @@ namespace k8s /// /// delete a ClusterRole /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -131812,12 +136907,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteClusterRoleWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteClusterRoleWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -131993,6 +137084,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -132017,7 +137114,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -132035,6 +137132,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -132045,6 +137143,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/clusterroles/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -132183,9 +137285,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -132229,6 +137328,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -132253,7 +137355,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -132268,12 +137370,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -132292,10 +137394,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -132316,6 +137414,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -132425,6 +137527,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -132449,7 +137560,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -132471,6 +137582,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -132481,6 +137594,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/rolebindings").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -132655,9 +137776,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -132701,6 +137819,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -132725,7 +137846,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedRoleBindingWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -132740,12 +137861,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -132764,10 +137885,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -132788,6 +137905,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -133063,6 +138184,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -133087,7 +138214,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedRoleBindingWithHttpMessagesAsync(V1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -133113,6 +138240,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -133125,6 +138253,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -133253,14 +138385,14 @@ namespace k8s /// /// delete a RoleBinding /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -133313,12 +138445,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedRoleBindingWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedRoleBindingWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -133503,6 +138631,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -133527,7 +138661,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -133549,6 +138683,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -133561,6 +138696,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -133699,9 +138838,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -133745,6 +138881,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -133769,7 +138908,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -133784,12 +138923,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -133808,10 +138947,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -133832,6 +138967,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -133941,6 +139080,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -133965,7 +139113,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedRoleWithHttpMessagesAsync(V1Role body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedRoleWithHttpMessagesAsync(V1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -133987,6 +139135,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -133997,6 +139147,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1/namespaces/{namespace}/roles").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -134171,9 +139329,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -134217,6 +139372,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -134241,7 +139399,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedRoleWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -134256,12 +139414,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -134280,10 +139438,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -134304,6 +139458,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -134579,6 +139737,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -134603,7 +139767,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedRoleWithHttpMessagesAsync(V1Role body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedRoleWithHttpMessagesAsync(V1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -134629,6 +139793,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -134641,6 +139806,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -134769,14 +139938,14 @@ namespace k8s /// /// delete a Role /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -134829,12 +139998,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedRoleWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedRoleWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -135019,6 +140184,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -135043,7 +140214,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedRoleWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -135065,6 +140236,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -135077,6 +140249,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -135702,7 +140878,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources26WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources27WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -135712,7 +140888,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources26", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources27", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -135838,9 +141014,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -135884,6 +141057,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -135902,7 +141078,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -135913,12 +141089,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListClusterRoleBinding1", tracingParameters); @@ -135935,10 +141111,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -135959,6 +141131,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -136065,6 +141241,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -136089,7 +141274,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -136107,6 +141292,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateClusterRoleBinding1", tracingParameters); @@ -136115,6 +141302,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -136286,9 +141481,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -136332,6 +141524,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -136350,7 +141545,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionClusterRoleBinding1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -136361,12 +141556,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionClusterRoleBinding1", tracingParameters); @@ -136383,10 +141578,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -136407,6 +141598,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -136670,6 +141865,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -136694,7 +141895,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceClusterRoleBinding1WithHttpMessagesAsync(V1alpha1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -136716,6 +141917,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -136726,6 +141928,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -136854,11 +142060,11 @@ namespace k8s /// /// delete a ClusterRoleBinding /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -136911,12 +142117,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteClusterRoleBinding1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteClusterRoleBinding1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -137092,6 +142294,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -137116,7 +142324,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -137134,6 +142342,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -137144,6 +142353,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindings/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -137279,9 +142492,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -137325,6 +142535,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -137343,7 +142556,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -137354,12 +142567,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListClusterRole1", tracingParameters); @@ -137376,10 +142589,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -137400,6 +142609,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -137506,6 +142719,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -137530,7 +142752,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -137548,6 +142770,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateClusterRole1", tracingParameters); @@ -137556,6 +142780,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/clusterroles").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -137727,9 +142959,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -137773,6 +143002,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -137791,7 +143023,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionClusterRole1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -137802,12 +143034,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionClusterRole1", tracingParameters); @@ -137824,10 +143056,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -137848,6 +143076,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -138111,6 +143343,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -138135,7 +143373,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceClusterRole1WithHttpMessagesAsync(V1alpha1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -138157,6 +143395,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -138167,6 +143406,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -138295,11 +143538,11 @@ namespace k8s /// /// delete a ClusterRole /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -138352,12 +143595,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteClusterRole1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteClusterRole1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -138533,6 +143772,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -138557,7 +143802,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRole1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRole1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -138575,6 +143820,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -138585,6 +143831,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/clusterroles/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -138723,9 +143973,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -138769,6 +144016,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -138793,7 +144043,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -138808,12 +144058,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -138832,10 +144082,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -138856,6 +144102,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -138965,6 +144215,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -138989,7 +144248,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -139011,6 +144270,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -139021,6 +144282,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -139195,9 +144464,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -139241,6 +144507,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -139265,7 +144534,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedRoleBinding1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -139280,12 +144549,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -139304,10 +144573,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -139328,6 +144593,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -139603,6 +144872,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -139627,7 +144902,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedRoleBinding1WithHttpMessagesAsync(V1alpha1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -139653,6 +144928,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -139665,6 +144941,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -139793,14 +145073,14 @@ namespace k8s /// /// delete a RoleBinding /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -139853,12 +145133,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedRoleBinding1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedRoleBinding1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -140043,6 +145319,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -140067,7 +145349,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -140089,6 +145371,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -140101,6 +145384,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -140239,9 +145526,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -140285,6 +145569,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -140309,7 +145596,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -140324,12 +145611,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -140348,10 +145635,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -140372,6 +145655,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -140481,6 +145768,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -140505,7 +145801,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -140527,6 +145823,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -140537,6 +145835,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/roles").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -140711,9 +146017,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -140757,6 +146060,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -140781,7 +146087,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedRole1WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -140796,12 +146102,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -140820,10 +146126,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -140844,6 +146146,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -141119,6 +146425,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -141143,7 +146455,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedRole1WithHttpMessagesAsync(V1alpha1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -141169,6 +146481,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -141181,6 +146494,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -141309,14 +146626,14 @@ namespace k8s /// /// delete a Role /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -141369,12 +146686,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedRole1WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedRole1WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -141559,6 +146872,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -141583,7 +146902,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRole1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedRole1WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -141605,6 +146924,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -141617,6 +146937,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -142242,7 +147566,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources27WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources28WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -142252,7 +147576,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources27", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources28", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -142378,9 +147702,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -142424,6 +147745,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -142442,7 +147766,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -142453,12 +147777,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListClusterRoleBinding2", tracingParameters); @@ -142475,10 +147799,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -142499,6 +147819,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -142605,6 +147929,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -142629,7 +147962,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -142647,6 +147980,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateClusterRoleBinding2", tracingParameters); @@ -142655,6 +147990,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -142826,9 +148169,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -142872,6 +148212,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -142890,7 +148233,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionClusterRoleBinding2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -142901,12 +148244,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionClusterRoleBinding2", tracingParameters); @@ -142923,10 +148266,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -142947,6 +148286,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -143210,6 +148553,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -143234,7 +148583,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceClusterRoleBinding2WithHttpMessagesAsync(V1beta1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -143256,6 +148605,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -143266,6 +148616,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -143394,11 +148748,11 @@ namespace k8s /// /// delete a ClusterRoleBinding /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -143451,12 +148805,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteClusterRoleBinding2WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteClusterRoleBinding2WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -143632,6 +148982,12 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -143656,7 +149012,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -143674,6 +149030,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -143684,6 +149041,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/clusterrolebindings/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -143819,9 +149180,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -143865,6 +149223,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -143883,7 +149244,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -143894,12 +149255,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListClusterRole2", tracingParameters); @@ -143916,10 +149277,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -143940,6 +149297,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -144046,6 +149407,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -144070,7 +149440,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -144088,6 +149458,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateClusterRole2", tracingParameters); @@ -144096,6 +149468,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/clusterroles").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -144267,9 +149647,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -144313,6 +149690,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -144331,7 +149711,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionClusterRole2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -144342,12 +149722,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionClusterRole2", tracingParameters); @@ -144364,10 +149744,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -144388,6 +149764,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -144651,6 +150031,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -144675,7 +150061,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceClusterRole2WithHttpMessagesAsync(V1beta1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -144697,6 +150083,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -144707,6 +150094,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -144835,11 +150226,11 @@ namespace k8s /// /// delete a ClusterRole /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -144892,12 +150283,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteClusterRole2WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteClusterRole2WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -145073,6 +150460,12 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -145097,7 +150490,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRole2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRole2WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -145115,6 +150508,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -145125,6 +150519,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -145263,9 +150661,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -145309,6 +150704,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -145333,7 +150731,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -145348,12 +150746,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -145372,10 +150770,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -145396,6 +150790,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -145505,6 +150903,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -145529,7 +150936,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -145551,6 +150958,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -145561,6 +150970,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/rolebindings").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -145735,9 +151152,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -145781,6 +151195,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -145805,7 +151222,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedRoleBinding2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -145820,12 +151237,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -145844,10 +151261,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -145868,6 +151281,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -146143,6 +151560,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -146167,7 +151590,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedRoleBinding2WithHttpMessagesAsync(V1beta1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -146193,6 +151616,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -146205,6 +151629,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -146333,14 +151761,14 @@ namespace k8s /// /// delete a RoleBinding /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -146393,12 +151821,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedRoleBinding2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedRoleBinding2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -146583,6 +152007,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -146607,7 +152037,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -146629,6 +152059,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -146641,6 +152072,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -146779,9 +152214,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -146825,6 +152257,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -146849,7 +152284,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -146864,12 +152299,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -146888,10 +152323,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -146912,6 +152343,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -147021,6 +152456,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -147045,7 +152489,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -147067,6 +152511,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -147077,6 +152523,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/rbac.authorization.k8s.io/v1beta1/namespaces/{namespace}/roles").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -147251,9 +152705,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -147297,6 +152748,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -147321,7 +152775,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedRole2WithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -147336,12 +152790,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -147360,10 +152814,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -147384,6 +152834,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -147659,6 +153113,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -147683,7 +153143,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedRole2WithHttpMessagesAsync(V1beta1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -147709,6 +153169,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -147721,6 +153182,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -147849,14 +153314,14 @@ namespace k8s /// /// delete a Role /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -147909,12 +153374,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedRole2WithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedRole2WithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -148099,6 +153560,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -148123,7 +153590,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRole2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedRole2WithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -148145,6 +153612,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -148157,6 +153625,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -148782,7 +154254,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup15WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -148792,7 +154264,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup15", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup16", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -148908,7 +154380,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources28WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources29WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -148918,7 +154390,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources28", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources29", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -149044,9 +154516,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -149090,6 +154559,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -149108,7 +154580,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -149119,12 +154591,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListPriorityClass", tracingParameters); @@ -149141,10 +154613,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -149165,6 +154633,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -149271,6 +154743,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -149295,7 +154776,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreatePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreatePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -149313,6 +154794,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreatePriorityClass", tracingParameters); @@ -149321,6 +154804,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/scheduling.k8s.io/v1alpha1/priorityclasses").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -149492,9 +154983,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -149538,6 +155026,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -149556,7 +155047,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionPriorityClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -149567,12 +155058,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionPriorityClass", tracingParameters); @@ -149589,10 +155080,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -149613,6 +155100,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -149894,6 +155385,12 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -149918,7 +155415,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplacePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplacePriorityClassWithHttpMessagesAsync(V1alpha1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -149940,6 +155437,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -149950,6 +155448,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -150078,11 +155580,11 @@ namespace k8s /// /// delete a PriorityClass /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -150135,12 +155637,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeletePriorityClassWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeletePriorityClassWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -150316,6 +155814,12 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -150340,7 +155844,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchPriorityClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPriorityClassWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -150358,6 +155862,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -150368,6 +155873,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/scheduling.k8s.io/v1alpha1/priorityclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -150493,7 +156002,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources29WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources30WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -150503,7 +156012,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources29", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources30", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -150629,9 +156138,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -150675,6 +156181,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -150693,7 +156202,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -150704,12 +156213,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListPriorityClass1", tracingParameters); @@ -150726,10 +156235,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -150750,6 +156255,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -150856,6 +156365,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -150880,7 +156398,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreatePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreatePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -150898,6 +156416,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreatePriorityClass1", tracingParameters); @@ -150906,6 +156426,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/scheduling.k8s.io/v1beta1/priorityclasses").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -151077,9 +156605,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -151123,6 +156648,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -151141,7 +156669,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionPriorityClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -151152,12 +156680,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionPriorityClass1", tracingParameters); @@ -151174,10 +156702,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -151198,6 +156722,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -151479,6 +157007,12 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -151503,7 +157037,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplacePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplacePriorityClass1WithHttpMessagesAsync(V1beta1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -151525,6 +157059,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -151535,6 +157070,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -151663,11 +157202,11 @@ namespace k8s /// /// delete a PriorityClass /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -151720,12 +157259,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeletePriorityClass1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeletePriorityClass1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -151901,6 +157436,12 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -151925,7 +157466,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchPriorityClass1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPriorityClass1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -151943,6 +157484,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -151953,6 +157495,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/scheduling.k8s.io/v1beta1/priorityclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -152078,7 +157624,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup16WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -152088,7 +157634,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup16", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup17", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -152204,7 +157750,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources30WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources31WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -152214,7 +157760,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources30", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources31", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -152343,9 +157889,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -152389,6 +157932,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -152413,7 +157959,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -152428,12 +157974,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -152452,10 +157998,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -152476,6 +158018,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -152585,6 +158131,15 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -152609,7 +158164,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -152631,6 +158186,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -152641,6 +158198,14 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/settings.k8s.io/v1alpha1/namespaces/{namespace}/podpresets").ToString(); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -152815,9 +158380,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -152861,6 +158423,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -152885,7 +158450,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionNamespacedPodPresetWithHttpMessagesAsync(string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (namespaceParameter == null) { @@ -152900,12 +158465,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -152924,10 +158489,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -152948,6 +158509,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -153241,6 +158806,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -153265,7 +158836,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceNamespacedPodPresetWithHttpMessagesAsync(V1alpha1PodPreset body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -153291,6 +158862,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -153303,6 +158875,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -153431,14 +159007,14 @@ namespace k8s /// /// delete a PodPreset /// - /// - /// /// /// name of the PodPreset /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -153491,12 +159067,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteNamespacedPodPresetWithHttpMessagesAsync(V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteNamespacedPodPresetWithHttpMessagesAsync(string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -153681,6 +159253,12 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -153705,7 +159283,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodPresetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespacedPodPresetWithHttpMessagesAsync(V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -153727,6 +159305,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("namespaceParameter", namespaceParameter); tracingParameters.Add("pretty", pretty); @@ -153739,6 +159318,10 @@ namespace k8s _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); _url = _url.Replace("{namespace}", System.Uri.EscapeDataString(namespaceParameter)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -154114,7 +159697,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIGroup17WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIGroup18WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -154124,7 +159707,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup17", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIGroup18", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -154240,7 +159823,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources31WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources32WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -154250,7 +159833,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources31", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources32", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -154376,9 +159959,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -154422,6 +160002,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -154440,7 +160023,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -154451,12 +160034,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListStorageClass", tracingParameters); @@ -154473,10 +160056,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -154497,6 +160076,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -154603,6 +160186,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -154627,7 +160219,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateStorageClassWithHttpMessagesAsync(V1StorageClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateStorageClassWithHttpMessagesAsync(V1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -154645,6 +160237,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateStorageClass", tracingParameters); @@ -154653,6 +160247,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/storageclasses").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -154824,9 +160426,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -154870,6 +160469,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -154888,7 +160490,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionStorageClassWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -154899,12 +160501,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionStorageClass", tracingParameters); @@ -154921,10 +160523,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -154945,6 +160543,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -155226,6 +160828,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -155250,7 +160858,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceStorageClassWithHttpMessagesAsync(V1StorageClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceStorageClassWithHttpMessagesAsync(V1StorageClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -155272,6 +160880,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -155282,6 +160891,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/storageclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -155410,11 +161023,11 @@ namespace k8s /// /// delete a StorageClass /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -155467,12 +161080,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteStorageClassWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteStorageClassWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -155648,6 +161257,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -155672,7 +161287,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchStorageClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchStorageClassWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -155690,6 +161305,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -155700,6 +161316,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/storageclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -155807,6 +161427,2034 @@ namespace k8s return _result; } + /// + /// list or watch objects of kind VolumeAttachment + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("continueParameter", continueParameter); + tracingParameters.Add("fieldSelector", fieldSelector); + tracingParameters.Add("labelSelector", labelSelector); + tracingParameters.Add("limit", limit); + tracingParameters.Add("resourceVersion", resourceVersion); + tracingParameters.Add("timeoutSeconds", timeoutSeconds); + tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments").ToString(); + List _queryParameters = new List(); + if (continueParameter != null) + { + _queryParameters.Add(string.Format("continue={0}", System.Uri.EscapeDataString(continueParameter))); + } + if (fieldSelector != null) + { + _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); + } + if (labelSelector != null) + { + _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); + } + if (limit != null) + { + _queryParameters.Add(string.Format("limit={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(limit, SerializationSettings).Trim('"')))); + } + if (resourceVersion != null) + { + _queryParameters.Add(string.Format("resourceVersion={0}", System.Uri.EscapeDataString(resourceVersion))); + } + if (timeoutSeconds != null) + { + _queryParameters.Add(string.Format("timeoutSeconds={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timeoutSeconds, SerializationSettings).Trim('"')))); + } + if (watch != null) + { + _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 401) + { + 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 VolumeAttachment + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> CreateVolumeAttachmentWithHttpMessagesAsync(V1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (body != null) + { + body.Validate(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments").ToString(); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // 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 != 200 && (int)_statusCode != 201 && (int)_statusCode != 202 && (int)_statusCode != 401) + { + 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); + } + } + // 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); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _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; + } + + /// + /// delete collection of VolumeAttachment + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DeleteCollectionVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("continueParameter", continueParameter); + tracingParameters.Add("fieldSelector", fieldSelector); + tracingParameters.Add("labelSelector", labelSelector); + tracingParameters.Add("limit", limit); + tracingParameters.Add("resourceVersion", resourceVersion); + tracingParameters.Add("timeoutSeconds", timeoutSeconds); + tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments").ToString(); + List _queryParameters = new List(); + if (continueParameter != null) + { + _queryParameters.Add(string.Format("continue={0}", System.Uri.EscapeDataString(continueParameter))); + } + if (fieldSelector != null) + { + _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); + } + if (labelSelector != null) + { + _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); + } + if (limit != null) + { + _queryParameters.Add(string.Format("limit={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(limit, SerializationSettings).Trim('"')))); + } + if (resourceVersion != null) + { + _queryParameters.Add(string.Format("resourceVersion={0}", System.Uri.EscapeDataString(resourceVersion))); + } + if (timeoutSeconds != null) + { + _queryParameters.Add(string.Format("timeoutSeconds={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(timeoutSeconds, SerializationSettings).Trim('"')))); + } + if (watch != null) + { + _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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; + // 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// read the specified VolumeAttachment + /// + /// + /// name of the VolumeAttachment + /// + /// + /// Should the export be exact. Exact export maintains cluster-specific fields + /// like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user can not + /// specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> ReadVolumeAttachmentWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("exact", exact); + tracingParameters.Add("export", export); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ReadVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (exact != null) + { + _queryParameters.Add(string.Format("exact={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(exact, SerializationSettings).Trim('"')))); + } + if (export != null) + { + _queryParameters.Add(string.Format("export={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(export, SerializationSettings).Trim('"')))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// replace the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> ReplaceVolumeAttachmentWithHttpMessagesAsync(V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (body != null) + { + body.Validate(); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // 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 != 200 && (int)_statusCode != 201 && (int)_statusCode != 401) + { + 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); + } + } + // 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; + } + + /// + /// delete a VolumeAttachment + /// + /// + /// name of the VolumeAttachment + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// 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. Acceptable values are: 'Orphan' - orphan + /// the dependents; 'Background' - allow the garbage collector to delete the + /// dependents in the background; 'Foreground' - a cascading policy that + /// deletes all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> DeleteVolumeAttachmentWithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("gracePeriodSeconds", gracePeriodSeconds); + tracingParameters.Add("orphanDependents", orphanDependents); + tracingParameters.Add("propagationPolicy", propagationPolicy); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + 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 (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 202 && (int)_statusCode != 401) + { + 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); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _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; + } + + /// + /// partially update the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> PatchVolumeAttachmentWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "PatchVolumeAttachment", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _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-patch+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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// read status of the specified VolumeAttachment + /// + /// + /// name of the VolumeAttachment + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> ReadVolumeAttachmentStatusWithHttpMessagesAsync(string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ReadVolumeAttachmentStatus", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}/status").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + 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 && (int)_statusCode != 401) + { + 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; + } + + /// + /// replace status of the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> ReplaceVolumeAttachmentStatusWithHttpMessagesAsync(V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (body != null) + { + body.Validate(); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceVolumeAttachmentStatus", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}/status").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // 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 != 200 && (int)_statusCode != 201 && (int)_statusCode != 401) + { + 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); + } + } + // 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; + } + + /// + /// partially update status of the specified VolumeAttachment + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// 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> PatchVolumeAttachmentStatusWithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("name", name); + tracingParameters.Add("pretty", pretty); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "PatchVolumeAttachmentStatus", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1/volumeattachments/{name}/status").ToString(); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (pretty != null) + { + _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _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-patch+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 && (int)_statusCode != 401) + { + 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; + } + /// /// get available resources /// @@ -155825,7 +163473,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources32WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources33WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -155835,7 +163483,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources32", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources33", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -155961,9 +163609,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -156007,6 +163652,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -156025,7 +163673,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -156036,15 +163684,15 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -156058,10 +163706,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -156082,6 +163726,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -156188,6 +163836,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -156212,7 +163869,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateVolumeAttachmentWithHttpMessagesAsync(V1alpha1VolumeAttachment body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateVolumeAttachment1WithHttpMessagesAsync(V1alpha1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -156230,14 +163887,24 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1alpha1/volumeattachments").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -156409,9 +164076,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -156455,6 +164119,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -156473,7 +164140,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionVolumeAttachmentWithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -156484,15 +164151,15 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -156506,10 +164173,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -156530,6 +164193,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -156669,7 +164336,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReadVolumeAttachmentWithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReadVolumeAttachment1WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (name == null) { @@ -156687,7 +164354,7 @@ namespace k8s tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ReadVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ReadVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -156811,6 +164478,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -156835,7 +164508,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceVolumeAttachmentWithHttpMessagesAsync(V1alpha1VolumeAttachment body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceVolumeAttachment1WithHttpMessagesAsync(V1alpha1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -156857,16 +164530,21 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ReplaceVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1alpha1/volumeattachments/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -156995,11 +164673,11 @@ namespace k8s /// /// delete a VolumeAttachment /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -157052,12 +164730,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteVolumeAttachmentWithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteVolumeAttachment1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -157077,7 +164751,7 @@ namespace k8s tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -157233,6 +164907,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -157257,7 +164937,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchVolumeAttachmentWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchVolumeAttachment1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -157275,16 +164955,21 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "PatchVolumeAttachment", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "PatchVolumeAttachment1", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1alpha1/volumeattachments/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -157410,7 +165095,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> GetAPIResources33WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAPIResources34WithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -157420,7 +165105,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources33", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAPIResources34", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -157546,9 +165231,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -157592,6 +165274,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -157610,7 +165295,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -157621,12 +165306,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListStorageClass1", tracingParameters); @@ -157643,10 +165328,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -157667,6 +165348,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -157773,6 +165458,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -157797,7 +165491,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -157815,6 +165509,8 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateStorageClass1", tracingParameters); @@ -157823,6 +165519,14 @@ namespace k8s var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1beta1/storageclasses").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -157994,9 +165698,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -158040,6 +165741,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -158058,7 +165762,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionStorageClass1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -158069,12 +165773,12 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionStorageClass1", tracingParameters); @@ -158091,10 +165795,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -158115,6 +165815,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -158396,6 +166100,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -158420,7 +166130,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceStorageClass1WithHttpMessagesAsync(V1beta1StorageClass body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -158442,6 +166152,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -158452,6 +166163,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1beta1/storageclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -158580,11 +166295,11 @@ namespace k8s /// /// delete a StorageClass /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -158637,12 +166352,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteStorageClass1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteStorageClass1WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -158818,6 +166529,12 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -158842,7 +166559,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchStorageClass1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchStorageClass1WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -158860,6 +166577,7 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); @@ -158870,6 +166588,10 @@ namespace k8s var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1beta1/storageclasses/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -159005,9 +166727,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -159051,6 +166770,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -159069,7 +166791,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ListVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListVolumeAttachment2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -159080,15 +166802,15 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -159102,10 +166824,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -159126,6 +166844,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -159232,6 +166954,15 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -159256,7 +166987,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> CreateVolumeAttachment1WithHttpMessagesAsync(V1beta1VolumeAttachment body, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateVolumeAttachment2WithHttpMessagesAsync(V1beta1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -159274,14 +167005,24 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1beta1/volumeattachments").ToString(); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -159453,9 +167194,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -159499,6 +167237,9 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// @@ -159517,7 +167258,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCollectionVolumeAttachment1WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCollectionVolumeAttachment2WithHttpMessagesAsync(string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -159528,15 +167269,15 @@ namespace k8s Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("continueParameter", continueParameter); tracingParameters.Add("fieldSelector", fieldSelector); - tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("labelSelector", labelSelector); tracingParameters.Add("limit", limit); tracingParameters.Add("resourceVersion", resourceVersion); tracingParameters.Add("timeoutSeconds", timeoutSeconds); tracingParameters.Add("watch", watch); + tracingParameters.Add("includeUninitialized", includeUninitialized); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCollectionVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -159550,10 +167291,6 @@ namespace k8s { _queryParameters.Add(string.Format("fieldSelector={0}", System.Uri.EscapeDataString(fieldSelector))); } - if (includeUninitialized != null) - { - _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); - } if (labelSelector != null) { _queryParameters.Add(string.Format("labelSelector={0}", System.Uri.EscapeDataString(labelSelector))); @@ -159574,6 +167311,10 @@ namespace k8s { _queryParameters.Add(string.Format("watch={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(watch, SerializationSettings).Trim('"')))); } + if (includeUninitialized != null) + { + _queryParameters.Add(string.Format("includeUninitialized={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(includeUninitialized, SerializationSettings).Trim('"')))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -159713,7 +167454,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReadVolumeAttachment1WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReadVolumeAttachment2WithHttpMessagesAsync(string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (name == null) { @@ -159731,7 +167472,7 @@ namespace k8s tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ReadVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ReadVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -159855,6 +167596,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -159879,7 +167626,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> ReplaceVolumeAttachment1WithHttpMessagesAsync(V1beta1VolumeAttachment body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceVolumeAttachment2WithHttpMessagesAsync(V1beta1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -159901,16 +167648,21 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ReplaceVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1beta1/volumeattachments/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); @@ -160039,11 +167791,11 @@ namespace k8s /// /// delete a VolumeAttachment /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -160096,12 +167848,8 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> DeleteVolumeAttachment1WithHttpMessagesAsync(V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteVolumeAttachment2WithHttpMessagesAsync(string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (body == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "body"); - } if (name == null) { throw new ValidationException(ValidationRules.CannotBeNull, "name"); @@ -160121,7 +167869,7 @@ namespace k8s tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; @@ -160277,6 +168025,12 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// @@ -160301,7 +168055,7 @@ namespace k8s /// /// A response object containing the response body and response headers. /// - public async Task> PatchVolumeAttachment1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchVolumeAttachment2WithHttpMessagesAsync(V1Patch body, string name, string dryRun = default(string), string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -160319,16 +168073,21 @@ namespace k8s _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("body", body); + tracingParameters.Add("dryRun", dryRun); tracingParameters.Add("name", name); tracingParameters.Add("pretty", pretty); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "PatchVolumeAttachment1", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "PatchVolumeAttachment2", tracingParameters); } // Construct URL var _baseUrl = BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "apis/storage.k8s.io/v1beta1/volumeattachments/{name}").ToString(); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); List _queryParameters = new List(); + if (dryRun != null) + { + _queryParameters.Add(string.Format("dryRun={0}", System.Uri.EscapeDataString(dryRun))); + } if (pretty != null) { _queryParameters.Add(string.Format("pretty={0}", System.Uri.EscapeDataString(pretty))); diff --git a/src/KubernetesClient/generated/KubernetesExtensions.cs b/src/KubernetesClient/generated/KubernetesExtensions.cs index fa90e9f..a3ec87d 100644 --- a/src/KubernetesClient/generated/KubernetesExtensions.cs +++ b/src/KubernetesClient/generated/KubernetesExtensions.cs @@ -1023,9 +1023,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1069,12 +1066,16 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1NamespaceList ListNamespace(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1NamespaceList ListNamespace(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespaceAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespaceAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -1108,9 +1109,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1154,15 +1152,19 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespaceAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespaceAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespaceWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespaceWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1176,12 +1178,22 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace CreateNamespace(this IKubernetes operations, V1Namespace body, string pretty = default(string)) + public static V1Namespace CreateNamespace(this IKubernetes operations, V1Namespace body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespaceAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespaceAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -1192,15 +1204,25 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespaceAsync(this IKubernetes operations, V1Namespace body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespaceAsync(this IKubernetes operations, V1Namespace body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespaceWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespaceWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1217,12 +1239,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Binding CreateNamespacedBinding(this IKubernetes operations, V1Binding body, string namespaceParameter, string pretty = default(string)) + public static V1Binding CreateNamespacedBinding(this IKubernetes operations, V1Binding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedBindingAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedBindingAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -1236,15 +1268,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedBindingAsync(this IKubernetes operations, V1Binding body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedBindingAsync(this IKubernetes operations, V1Binding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedBindingWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedBindingWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1284,9 +1326,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1330,12 +1369,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ConfigMapList ListNamespacedConfigMap(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ConfigMapList ListNamespacedConfigMap(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedConfigMapAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedConfigMapAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -1372,9 +1414,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1418,15 +1457,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedConfigMapAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedConfigMapAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedConfigMapWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedConfigMapWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1443,12 +1485,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ConfigMap CreateNamespacedConfigMap(this IKubernetes operations, V1ConfigMap body, string namespaceParameter, string pretty = default(string)) + public static V1ConfigMap CreateNamespacedConfigMap(this IKubernetes operations, V1ConfigMap body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedConfigMapAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedConfigMapAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -1462,15 +1513,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedConfigMapAsync(this IKubernetes operations, V1ConfigMap body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedConfigMapAsync(this IKubernetes operations, V1ConfigMap body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedConfigMapWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedConfigMapWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1510,9 +1570,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1556,12 +1613,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedConfigMap(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedConfigMap(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedConfigMapAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedConfigMapAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -1598,9 +1658,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -1644,15 +1701,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedConfigMapAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedConfigMapAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedConfigMapWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedConfigMapWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1734,12 +1794,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ConfigMap ReplaceNamespacedConfigMap(this IKubernetes operations, V1ConfigMap body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ConfigMap ReplaceNamespacedConfigMap(this IKubernetes operations, V1ConfigMap body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedConfigMapAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedConfigMapAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -1756,15 +1822,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedConfigMapAsync(this IKubernetes operations, V1ConfigMap body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedConfigMapAsync(this IKubernetes operations, V1ConfigMap body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedConfigMapWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedConfigMapWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1776,14 +1848,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ConfigMap /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -1815,9 +1887,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedConfigMap(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedConfigMap(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedConfigMapAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedConfigMapAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -1826,14 +1898,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ConfigMap /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -1868,9 +1940,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedConfigMapAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedConfigMapAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedConfigMapWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedConfigMapWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1890,12 +1962,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ConfigMap PatchNamespacedConfigMap(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ConfigMap PatchNamespacedConfigMap(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedConfigMapAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedConfigMapAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -1912,15 +1990,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedConfigMapAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedConfigMapAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedConfigMapWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedConfigMapWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1960,9 +2044,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2006,12 +2087,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1EndpointsList ListNamespacedEndpoints(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1EndpointsList ListNamespacedEndpoints(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedEndpointsAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedEndpointsAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -2048,9 +2132,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2094,15 +2175,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedEndpointsAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedEndpointsAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedEndpointsWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedEndpointsWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2119,12 +2203,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Endpoints CreateNamespacedEndpoints(this IKubernetes operations, V1Endpoints body, string namespaceParameter, string pretty = default(string)) + public static V1Endpoints CreateNamespacedEndpoints(this IKubernetes operations, V1Endpoints body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedEndpointsAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedEndpointsAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -2138,15 +2231,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedEndpointsAsync(this IKubernetes operations, V1Endpoints body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedEndpointsAsync(this IKubernetes operations, V1Endpoints body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedEndpointsWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedEndpointsWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2186,9 +2288,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2232,12 +2331,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedEndpoints(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedEndpoints(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedEndpointsAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedEndpointsAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -2274,9 +2376,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2320,15 +2419,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedEndpointsAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedEndpointsAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedEndpointsWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedEndpointsWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2410,12 +2512,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Endpoints ReplaceNamespacedEndpoints(this IKubernetes operations, V1Endpoints body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Endpoints ReplaceNamespacedEndpoints(this IKubernetes operations, V1Endpoints body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedEndpointsAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedEndpointsAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -2432,15 +2540,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedEndpointsAsync(this IKubernetes operations, V1Endpoints body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedEndpointsAsync(this IKubernetes operations, V1Endpoints body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedEndpointsWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedEndpointsWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2452,14 +2566,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Endpoints /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -2491,9 +2605,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedEndpoints(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedEndpoints(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedEndpointsAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedEndpointsAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -2502,14 +2616,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Endpoints /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -2544,9 +2658,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedEndpointsAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedEndpointsAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedEndpointsWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedEndpointsWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2566,12 +2680,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Endpoints PatchNamespacedEndpoints(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Endpoints PatchNamespacedEndpoints(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedEndpointsAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedEndpointsAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -2588,15 +2708,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedEndpointsAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedEndpointsAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedEndpointsWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedEndpointsWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2636,9 +2762,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2682,12 +2805,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1EventList ListNamespacedEvent(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1EventList ListNamespacedEvent(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedEventAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedEventAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -2724,9 +2850,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2770,15 +2893,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedEventAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedEventAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedEventWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedEventWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2795,12 +2921,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Event CreateNamespacedEvent(this IKubernetes operations, V1Event body, string namespaceParameter, string pretty = default(string)) + public static V1Event CreateNamespacedEvent(this IKubernetes operations, V1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedEventAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedEventAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -2814,15 +2949,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedEventAsync(this IKubernetes operations, V1Event body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedEventAsync(this IKubernetes operations, V1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedEventWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedEventWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -2862,9 +3006,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2908,12 +3049,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedEvent(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedEvent(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedEventAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedEventAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -2950,9 +3094,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -2996,15 +3137,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedEventAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedEventAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedEventWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedEventWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3086,12 +3230,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Event ReplaceNamespacedEvent(this IKubernetes operations, V1Event body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Event ReplaceNamespacedEvent(this IKubernetes operations, V1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedEventAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedEventAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -3108,15 +3258,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedEventAsync(this IKubernetes operations, V1Event body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedEventAsync(this IKubernetes operations, V1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedEventWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedEventWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3128,14 +3284,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -3167,9 +3323,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedEvent(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedEvent(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedEventAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedEventAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -3178,14 +3334,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -3220,9 +3376,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedEventAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedEventAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedEventWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedEventWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3242,12 +3398,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Event PatchNamespacedEvent(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Event PatchNamespacedEvent(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedEventAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedEventAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -3264,15 +3426,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedEventAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedEventAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedEventWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedEventWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3312,9 +3480,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -3358,12 +3523,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1LimitRangeList ListNamespacedLimitRange(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1LimitRangeList ListNamespacedLimitRange(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedLimitRangeAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedLimitRangeAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -3400,9 +3568,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -3446,15 +3611,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedLimitRangeAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedLimitRangeAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedLimitRangeWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedLimitRangeWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3471,12 +3639,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1LimitRange CreateNamespacedLimitRange(this IKubernetes operations, V1LimitRange body, string namespaceParameter, string pretty = default(string)) + public static V1LimitRange CreateNamespacedLimitRange(this IKubernetes operations, V1LimitRange body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedLimitRangeAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedLimitRangeAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -3490,15 +3667,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedLimitRangeAsync(this IKubernetes operations, V1LimitRange body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedLimitRangeAsync(this IKubernetes operations, V1LimitRange body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedLimitRangeWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedLimitRangeWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3538,9 +3724,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -3584,12 +3767,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedLimitRange(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedLimitRange(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedLimitRangeAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedLimitRangeAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -3626,9 +3812,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -3672,15 +3855,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedLimitRangeAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedLimitRangeAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedLimitRangeWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedLimitRangeWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3762,12 +3948,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1LimitRange ReplaceNamespacedLimitRange(this IKubernetes operations, V1LimitRange body, string name, string namespaceParameter, string pretty = default(string)) + public static V1LimitRange ReplaceNamespacedLimitRange(this IKubernetes operations, V1LimitRange body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedLimitRangeAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedLimitRangeAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -3784,15 +3976,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedLimitRangeAsync(this IKubernetes operations, V1LimitRange body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedLimitRangeAsync(this IKubernetes operations, V1LimitRange body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedLimitRangeWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedLimitRangeWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3804,14 +4002,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the LimitRange /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -3843,9 +4041,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedLimitRange(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedLimitRange(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedLimitRangeAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedLimitRangeAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -3854,14 +4052,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the LimitRange /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -3896,9 +4094,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedLimitRangeAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedLimitRangeAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedLimitRangeWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedLimitRangeWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3918,12 +4116,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1LimitRange PatchNamespacedLimitRange(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1LimitRange PatchNamespacedLimitRange(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedLimitRangeAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedLimitRangeAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -3940,15 +4144,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedLimitRangeAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedLimitRangeAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedLimitRangeWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedLimitRangeWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -3988,9 +4198,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4034,12 +4241,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaimList ListNamespacedPersistentVolumeClaim(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1PersistentVolumeClaimList ListNamespacedPersistentVolumeClaim(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedPersistentVolumeClaimAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedPersistentVolumeClaimAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -4076,9 +4286,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4122,15 +4329,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedPersistentVolumeClaimWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedPersistentVolumeClaimWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4147,12 +4357,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim CreateNamespacedPersistentVolumeClaim(this IKubernetes operations, V1PersistentVolumeClaim body, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim CreateNamespacedPersistentVolumeClaim(this IKubernetes operations, V1PersistentVolumeClaim body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPersistentVolumeClaimAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPersistentVolumeClaimAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -4166,15 +4385,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1PersistentVolumeClaim body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1PersistentVolumeClaim body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4214,9 +4442,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4260,12 +4485,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedPersistentVolumeClaim(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedPersistentVolumeClaim(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedPersistentVolumeClaimAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedPersistentVolumeClaimAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -4302,9 +4530,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4348,15 +4573,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedPersistentVolumeClaimWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedPersistentVolumeClaimWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4438,12 +4666,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim ReplaceNamespacedPersistentVolumeClaim(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim ReplaceNamespacedPersistentVolumeClaim(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPersistentVolumeClaimAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPersistentVolumeClaimAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -4460,15 +4694,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4480,14 +4720,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PersistentVolumeClaim /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -4519,9 +4759,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedPersistentVolumeClaim(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedPersistentVolumeClaim(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedPersistentVolumeClaimAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedPersistentVolumeClaimAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -4530,14 +4770,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PersistentVolumeClaim /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -4572,9 +4812,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedPersistentVolumeClaimWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4594,12 +4834,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaim(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaim(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPersistentVolumeClaimAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPersistentVolumeClaimAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -4616,15 +4862,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4690,12 +4942,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim ReplaceNamespacedPersistentVolumeClaimStatus(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim ReplaceNamespacedPersistentVolumeClaimStatus(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPersistentVolumeClaimStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPersistentVolumeClaimStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -4712,15 +4970,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPersistentVolumeClaimStatusAsync(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPersistentVolumeClaimStatusAsync(this IKubernetes operations, V1PersistentVolumeClaim body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4740,12 +5004,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaimStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaimStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPersistentVolumeClaimStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPersistentVolumeClaimStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -4762,15 +5032,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPersistentVolumeClaimStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPersistentVolumeClaimStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4810,9 +5086,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4856,12 +5129,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PodList ListNamespacedPod(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1PodList ListNamespacedPod(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedPodAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedPodAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -4898,9 +5174,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -4944,15 +5217,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedPodAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedPodAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedPodWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedPodWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -4969,12 +5245,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Pod CreateNamespacedPod(this IKubernetes operations, V1Pod body, string namespaceParameter, string pretty = default(string)) + public static V1Pod CreateNamespacedPod(this IKubernetes operations, V1Pod body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPodAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPodAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -4988,15 +5273,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPodAsync(this IKubernetes operations, V1Pod body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPodAsync(this IKubernetes operations, V1Pod body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPodWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPodWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -5036,9 +5330,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -5082,12 +5373,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedPod(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedPod(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedPodAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedPodAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -5124,9 +5418,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -5170,15 +5461,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedPodAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedPodAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedPodWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedPodWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -5260,12 +5554,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Pod ReplaceNamespacedPod(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Pod ReplaceNamespacedPod(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPodAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPodAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -5282,15 +5582,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPodAsync(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPodAsync(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPodWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPodWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -5302,14 +5608,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Pod /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -5341,9 +5647,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedPod(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedPod(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedPodAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedPodAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -5352,14 +5658,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Pod /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -5394,9 +5700,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedPodAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedPodAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedPodWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedPodWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -5416,12 +5722,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Pod PatchNamespacedPod(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Pod PatchNamespacedPod(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPodAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPodAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -5438,15 +5750,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPodAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPodAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPodWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPodWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -5630,12 +5948,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Binding CreateNamespacedPodBinding(this IKubernetes operations, V1Binding body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Binding CreateNamespacedPodBinding(this IKubernetes operations, V1Binding body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPodBindingAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPodBindingAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -5652,15 +5980,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPodBindingAsync(this IKubernetes operations, V1Binding body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPodBindingAsync(this IKubernetes operations, V1Binding body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPodBindingWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPodBindingWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -5680,12 +6018,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Eviction CreateNamespacedPodEviction(this IKubernetes operations, V1beta1Eviction body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Eviction CreateNamespacedPodEviction(this IKubernetes operations, V1beta1Eviction body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPodEvictionAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPodEvictionAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -5702,15 +6050,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPodEvictionAsync(this IKubernetes operations, V1beta1Eviction body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPodEvictionAsync(this IKubernetes operations, V1beta1Eviction body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPodEvictionWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPodEvictionWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -6737,12 +7095,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Pod ReplaceNamespacedPodStatus(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Pod ReplaceNamespacedPodStatus(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPodStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPodStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -6759,15 +7123,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPodStatusAsync(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPodStatusAsync(this IKubernetes operations, V1Pod body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPodStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPodStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -6787,12 +7157,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Pod PatchNamespacedPodStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Pod PatchNamespacedPodStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPodStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPodStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -6809,15 +7185,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPodStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPodStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPodStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPodStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -6857,9 +7239,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -6903,12 +7282,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PodTemplateList ListNamespacedPodTemplate(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1PodTemplateList ListNamespacedPodTemplate(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedPodTemplateAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedPodTemplateAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -6945,9 +7327,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -6991,15 +7370,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedPodTemplateAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedPodTemplateAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedPodTemplateWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedPodTemplateWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7016,12 +7398,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PodTemplate CreateNamespacedPodTemplate(this IKubernetes operations, V1PodTemplate body, string namespaceParameter, string pretty = default(string)) + public static V1PodTemplate CreateNamespacedPodTemplate(this IKubernetes operations, V1PodTemplate body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPodTemplateAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPodTemplateAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -7035,15 +7426,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPodTemplateAsync(this IKubernetes operations, V1PodTemplate body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPodTemplateAsync(this IKubernetes operations, V1PodTemplate body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPodTemplateWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPodTemplateWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7083,9 +7483,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7129,12 +7526,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedPodTemplate(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedPodTemplate(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedPodTemplateAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedPodTemplateAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -7171,9 +7571,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7217,15 +7614,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedPodTemplateAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedPodTemplateAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedPodTemplateWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedPodTemplateWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7307,12 +7707,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PodTemplate ReplaceNamespacedPodTemplate(this IKubernetes operations, V1PodTemplate body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PodTemplate ReplaceNamespacedPodTemplate(this IKubernetes operations, V1PodTemplate body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPodTemplateAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPodTemplateAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -7329,15 +7735,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPodTemplateAsync(this IKubernetes operations, V1PodTemplate body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPodTemplateAsync(this IKubernetes operations, V1PodTemplate body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPodTemplateWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPodTemplateWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7349,14 +7761,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodTemplate /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -7388,9 +7800,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedPodTemplate(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedPodTemplate(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedPodTemplateAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedPodTemplateAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -7399,14 +7811,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodTemplate /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -7441,9 +7853,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedPodTemplateAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedPodTemplateAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedPodTemplateWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedPodTemplateWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7463,12 +7875,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PodTemplate PatchNamespacedPodTemplate(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PodTemplate PatchNamespacedPodTemplate(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPodTemplateAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPodTemplateAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -7485,15 +7903,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPodTemplateAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPodTemplateAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPodTemplateWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPodTemplateWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7533,9 +7957,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7579,12 +8000,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationControllerList ListNamespacedReplicationController(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ReplicationControllerList ListNamespacedReplicationController(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedReplicationControllerAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedReplicationControllerAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -7621,9 +8045,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7667,15 +8088,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedReplicationControllerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedReplicationControllerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedReplicationControllerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedReplicationControllerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7692,12 +8116,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController CreateNamespacedReplicationController(this IKubernetes operations, V1ReplicationController body, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController CreateNamespacedReplicationController(this IKubernetes operations, V1ReplicationController body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedReplicationControllerAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedReplicationControllerAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -7711,15 +8144,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedReplicationControllerAsync(this IKubernetes operations, V1ReplicationController body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedReplicationControllerAsync(this IKubernetes operations, V1ReplicationController body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedReplicationControllerWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedReplicationControllerWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7759,9 +8201,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7805,12 +8244,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedReplicationController(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedReplicationController(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedReplicationControllerAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedReplicationControllerAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -7847,9 +8289,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -7893,15 +8332,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedReplicationControllerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedReplicationControllerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedReplicationControllerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedReplicationControllerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -7983,12 +8425,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController ReplaceNamespacedReplicationController(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController ReplaceNamespacedReplicationController(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicationControllerAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicationControllerAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8005,15 +8453,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicationControllerAsync(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicationControllerAsync(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicationControllerWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicationControllerWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8025,14 +8479,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicationController /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -8064,9 +8518,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedReplicationController(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedReplicationController(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedReplicationControllerAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedReplicationControllerAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -8075,14 +8529,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicationController /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -8117,9 +8571,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedReplicationControllerAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedReplicationControllerAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedReplicationControllerWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedReplicationControllerWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8139,12 +8593,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController PatchNamespacedReplicationController(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController PatchNamespacedReplicationController(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicationControllerAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicationControllerAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8161,15 +8621,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicationControllerAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicationControllerWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicationControllerWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8235,12 +8701,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale ReplaceNamespacedReplicationControllerScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale ReplaceNamespacedReplicationControllerScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicationControllerScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicationControllerScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8257,15 +8729,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicationControllerScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicationControllerScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicationControllerScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicationControllerScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8285,12 +8763,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale PatchNamespacedReplicationControllerScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale PatchNamespacedReplicationControllerScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicationControllerScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicationControllerScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8307,15 +8791,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicationControllerScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8381,12 +8871,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController ReplaceNamespacedReplicationControllerStatus(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController ReplaceNamespacedReplicationControllerStatus(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicationControllerStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicationControllerStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8403,15 +8899,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicationControllerStatusAsync(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicationControllerStatusAsync(this IKubernetes operations, V1ReplicationController body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicationControllerStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicationControllerStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8431,12 +8933,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController PatchNamespacedReplicationControllerStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController PatchNamespacedReplicationControllerStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicationControllerStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicationControllerStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8453,15 +8961,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicationControllerStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8501,9 +9015,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -8547,12 +9058,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuotaList ListNamespacedResourceQuota(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ResourceQuotaList ListNamespacedResourceQuota(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedResourceQuotaAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedResourceQuotaAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -8589,9 +9103,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -8635,15 +9146,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedResourceQuotaAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedResourceQuotaAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedResourceQuotaWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedResourceQuotaWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8660,12 +9174,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota CreateNamespacedResourceQuota(this IKubernetes operations, V1ResourceQuota body, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota CreateNamespacedResourceQuota(this IKubernetes operations, V1ResourceQuota body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedResourceQuotaAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedResourceQuotaAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -8679,15 +9202,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedResourceQuotaAsync(this IKubernetes operations, V1ResourceQuota body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedResourceQuotaAsync(this IKubernetes operations, V1ResourceQuota body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedResourceQuotaWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedResourceQuotaWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8727,9 +9259,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -8773,12 +9302,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedResourceQuota(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedResourceQuota(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedResourceQuotaAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedResourceQuotaAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -8815,9 +9347,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -8861,15 +9390,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedResourceQuotaAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedResourceQuotaAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedResourceQuotaWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedResourceQuotaWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8951,12 +9483,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota ReplaceNamespacedResourceQuota(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota ReplaceNamespacedResourceQuota(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedResourceQuotaAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedResourceQuotaAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -8973,15 +9511,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedResourceQuotaAsync(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedResourceQuotaAsync(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedResourceQuotaWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedResourceQuotaWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -8993,14 +9537,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ResourceQuota /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -9032,9 +9576,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedResourceQuota(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedResourceQuota(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedResourceQuotaAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedResourceQuotaAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -9043,14 +9587,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ResourceQuota /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -9085,9 +9629,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedResourceQuotaAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedResourceQuotaAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedResourceQuotaWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedResourceQuotaWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9107,12 +9651,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota PatchNamespacedResourceQuota(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota PatchNamespacedResourceQuota(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedResourceQuotaAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedResourceQuotaAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -9129,15 +9679,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedResourceQuotaAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedResourceQuotaAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedResourceQuotaWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedResourceQuotaWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9203,12 +9759,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota ReplaceNamespacedResourceQuotaStatus(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota ReplaceNamespacedResourceQuotaStatus(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedResourceQuotaStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedResourceQuotaStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -9225,15 +9787,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedResourceQuotaStatusAsync(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedResourceQuotaStatusAsync(this IKubernetes operations, V1ResourceQuota body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedResourceQuotaStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedResourceQuotaStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9253,12 +9821,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota PatchNamespacedResourceQuotaStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota PatchNamespacedResourceQuotaStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedResourceQuotaStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedResourceQuotaStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -9275,15 +9849,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedResourceQuotaStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedResourceQuotaStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9323,9 +9903,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -9369,12 +9946,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1SecretList ListNamespacedSecret(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1SecretList ListNamespacedSecret(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedSecretAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedSecretAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -9411,9 +9991,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -9457,15 +10034,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedSecretAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedSecretAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedSecretWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedSecretWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9482,12 +10062,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Secret CreateNamespacedSecret(this IKubernetes operations, V1Secret body, string namespaceParameter, string pretty = default(string)) + public static V1Secret CreateNamespacedSecret(this IKubernetes operations, V1Secret body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedSecretAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedSecretAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -9501,15 +10090,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedSecretAsync(this IKubernetes operations, V1Secret body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedSecretAsync(this IKubernetes operations, V1Secret body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedSecretWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedSecretWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9549,9 +10147,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -9595,12 +10190,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedSecret(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedSecret(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedSecretAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedSecretAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -9637,9 +10235,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -9683,15 +10278,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedSecretAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedSecretAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedSecretWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedSecretWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9773,12 +10371,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Secret ReplaceNamespacedSecret(this IKubernetes operations, V1Secret body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Secret ReplaceNamespacedSecret(this IKubernetes operations, V1Secret body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedSecretAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedSecretAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -9795,15 +10399,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedSecretAsync(this IKubernetes operations, V1Secret body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedSecretAsync(this IKubernetes operations, V1Secret body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedSecretWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedSecretWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9815,14 +10425,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Secret /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -9854,9 +10464,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedSecret(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedSecret(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedSecretAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedSecretAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -9865,14 +10475,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Secret /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -9907,9 +10517,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedSecretAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedSecretAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedSecretWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedSecretWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9929,12 +10539,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Secret PatchNamespacedSecret(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Secret PatchNamespacedSecret(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedSecretAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedSecretAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -9951,15 +10567,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedSecretAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedSecretAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedSecretWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedSecretWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -9999,9 +10621,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10045,12 +10664,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ServiceAccountList ListNamespacedServiceAccount(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ServiceAccountList ListNamespacedServiceAccount(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedServiceAccountAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedServiceAccountAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -10087,9 +10709,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10133,15 +10752,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedServiceAccountAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedServiceAccountAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedServiceAccountWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedServiceAccountWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10158,12 +10780,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ServiceAccount CreateNamespacedServiceAccount(this IKubernetes operations, V1ServiceAccount body, string namespaceParameter, string pretty = default(string)) + public static V1ServiceAccount CreateNamespacedServiceAccount(this IKubernetes operations, V1ServiceAccount body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedServiceAccountAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedServiceAccountAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -10177,15 +10808,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedServiceAccountAsync(this IKubernetes operations, V1ServiceAccount body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedServiceAccountAsync(this IKubernetes operations, V1ServiceAccount body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedServiceAccountWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedServiceAccountWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10225,9 +10865,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10271,12 +10908,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedServiceAccount(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedServiceAccount(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedServiceAccountAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedServiceAccountAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -10313,9 +10953,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10359,15 +10996,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedServiceAccountAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedServiceAccountAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedServiceAccountWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedServiceAccountWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10449,12 +11089,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ServiceAccount ReplaceNamespacedServiceAccount(this IKubernetes operations, V1ServiceAccount body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ServiceAccount ReplaceNamespacedServiceAccount(this IKubernetes operations, V1ServiceAccount body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedServiceAccountAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedServiceAccountAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -10471,15 +11117,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedServiceAccountAsync(this IKubernetes operations, V1ServiceAccount body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedServiceAccountAsync(this IKubernetes operations, V1ServiceAccount body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedServiceAccountWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedServiceAccountWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10491,14 +11143,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ServiceAccount /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -10530,9 +11182,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedServiceAccount(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedServiceAccount(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedServiceAccountAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedServiceAccountAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -10541,14 +11193,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ServiceAccount /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -10583,9 +11235,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedServiceAccountAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedServiceAccountAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedServiceAccountWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedServiceAccountWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10605,12 +11257,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ServiceAccount PatchNamespacedServiceAccount(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ServiceAccount PatchNamespacedServiceAccount(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedServiceAccountAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedServiceAccountAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -10627,15 +11285,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedServiceAccountAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedServiceAccountAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedServiceAccountWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedServiceAccountWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10675,9 +11339,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10721,12 +11382,16 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ServiceList ListNamespacedService(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ServiceList ListNamespacedService(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedServiceAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedServiceAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -10763,9 +11428,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -10809,15 +11471,19 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedServiceAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedServiceAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedServiceWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedServiceWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10834,12 +11500,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Service CreateNamespacedService(this IKubernetes operations, V1Service body, string namespaceParameter, string pretty = default(string)) + public static V1Service CreateNamespacedService(this IKubernetes operations, V1Service body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedServiceAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedServiceAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -10853,15 +11529,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedServiceAsync(this IKubernetes operations, V1Service body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedServiceAsync(this IKubernetes operations, V1Service body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedServiceWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedServiceWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10943,12 +11629,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Service ReplaceNamespacedService(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Service ReplaceNamespacedService(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedServiceAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedServiceAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -10965,15 +11657,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedServiceAsync(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedServiceAsync(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedServiceWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedServiceWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -10985,14 +11683,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Service /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -11024,9 +11722,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedService(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedService(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedServiceAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedServiceAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -11035,14 +11733,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Service /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -11077,9 +11775,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedServiceAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedServiceAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedServiceWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedServiceWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -11099,12 +11797,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Service PatchNamespacedService(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Service PatchNamespacedService(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedServiceAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedServiceAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -11121,15 +11825,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedServiceAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedServiceAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedServiceWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedServiceWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -11879,12 +12589,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Service ReplaceNamespacedServiceStatus(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Service ReplaceNamespacedServiceStatus(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedServiceStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedServiceStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -11901,15 +12617,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedServiceStatusAsync(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedServiceStatusAsync(this IKubernetes operations, V1Service body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedServiceStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedServiceStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -11929,12 +12651,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Service PatchNamespacedServiceStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Service PatchNamespacedServiceStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedServiceStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedServiceStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -11951,15 +12679,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedServiceStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedServiceStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedServiceStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedServiceStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12032,12 +12766,18 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace ReplaceNamespace(this IKubernetes operations, V1Namespace body, string name, string pretty = default(string)) + public static V1Namespace ReplaceNamespace(this IKubernetes operations, V1Namespace body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespaceAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespaceAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -12051,15 +12791,21 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespaceAsync(this IKubernetes operations, V1Namespace body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespaceAsync(this IKubernetes operations, V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespaceWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespaceWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12071,11 +12817,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Namespace /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -12107,9 +12853,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespace(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespace(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespaceAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespaceAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -12118,11 +12864,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Namespace /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -12157,9 +12903,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespaceAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespaceAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespaceWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespaceWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12176,12 +12922,18 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace PatchNamespace(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1Namespace PatchNamespace(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespaceAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespaceAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -12195,15 +12947,21 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespaceAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespaceAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespaceWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespaceWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12220,12 +12978,18 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace ReplaceNamespaceFinalize(this IKubernetes operations, V1Namespace body, string name, string pretty = default(string)) + public static V1Namespace ReplaceNamespaceFinalize(this IKubernetes operations, V1Namespace body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespaceFinalizeAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespaceFinalizeAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -12239,15 +13003,21 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespaceFinalizeAsync(this IKubernetes operations, V1Namespace body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespaceFinalizeAsync(this IKubernetes operations, V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespaceFinalizeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespaceFinalizeWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12304,12 +13074,18 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace ReplaceNamespaceStatus(this IKubernetes operations, V1Namespace body, string name, string pretty = default(string)) + public static V1Namespace ReplaceNamespaceStatus(this IKubernetes operations, V1Namespace body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespaceStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespaceStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -12323,15 +13099,21 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespaceStatusAsync(this IKubernetes operations, V1Namespace body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespaceStatusAsync(this IKubernetes operations, V1Namespace body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespaceStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespaceStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12348,12 +13130,18 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace PatchNamespaceStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1Namespace PatchNamespaceStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespaceStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespaceStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -12367,15 +13155,21 @@ namespace k8s /// /// name of the Namespace /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespaceStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespaceStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespaceStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespaceStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12412,9 +13206,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -12458,12 +13249,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1NodeList ListNode(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1NodeList ListNode(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNodeAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNodeAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -12497,9 +13291,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -12543,15 +13334,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNodeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNodeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNodeWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNodeWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12565,12 +13359,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Node CreateNode(this IKubernetes operations, V1Node body, string pretty = default(string)) + public static V1Node CreateNode(this IKubernetes operations, V1Node body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNodeAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateNodeAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -12581,15 +13384,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNodeAsync(this IKubernetes operations, V1Node body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNodeAsync(this IKubernetes operations, V1Node body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNodeWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNodeWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12626,9 +13438,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -12672,12 +13481,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNode(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNode(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNodeAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNodeAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -12711,9 +13523,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -12757,15 +13566,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNodeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNodeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNodeWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNodeWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12838,12 +13650,18 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Node ReplaceNode(this IKubernetes operations, V1Node body, string name, string pretty = default(string)) + public static V1Node ReplaceNode(this IKubernetes operations, V1Node body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNodeAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNodeAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -12857,15 +13675,21 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNodeAsync(this IKubernetes operations, V1Node body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNodeAsync(this IKubernetes operations, V1Node body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNodeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNodeWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12877,11 +13701,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Node /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -12913,9 +13737,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNode(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNode(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNodeAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNodeAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -12924,11 +13748,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Node /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -12963,9 +13787,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNodeAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNodeAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNodeWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNodeWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -12982,12 +13806,18 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Node PatchNode(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1Node PatchNode(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNodeAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchNodeAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -13001,15 +13831,21 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNodeAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNodeAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNodeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNodeWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -13582,12 +14418,18 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Node ReplaceNodeStatus(this IKubernetes operations, V1Node body, string name, string pretty = default(string)) + public static V1Node ReplaceNodeStatus(this IKubernetes operations, V1Node body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNodeStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNodeStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -13601,15 +14443,21 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNodeStatusAsync(this IKubernetes operations, V1Node body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNodeStatusAsync(this IKubernetes operations, V1Node body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNodeStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNodeStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -13626,12 +14474,18 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Node PatchNodeStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1Node PatchNodeStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNodeStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchNodeStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -13645,15 +14499,21 @@ namespace k8s /// /// name of the Node /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNodeStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNodeStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNodeStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNodeStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -13866,9 +14726,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -13912,12 +14769,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeList ListPersistentVolume(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1PersistentVolumeList ListPersistentVolume(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListPersistentVolumeAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListPersistentVolumeAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -13951,9 +14811,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -13997,15 +14854,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListPersistentVolumeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListPersistentVolumeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPersistentVolumeWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPersistentVolumeWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14019,12 +14879,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume CreatePersistentVolume(this IKubernetes operations, V1PersistentVolume body, string pretty = default(string)) + public static V1PersistentVolume CreatePersistentVolume(this IKubernetes operations, V1PersistentVolume body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreatePersistentVolumeAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreatePersistentVolumeAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -14035,15 +14904,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreatePersistentVolumeAsync(this IKubernetes operations, V1PersistentVolume body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreatePersistentVolumeAsync(this IKubernetes operations, V1PersistentVolume body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreatePersistentVolumeWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreatePersistentVolumeWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14080,9 +14958,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -14126,12 +15001,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionPersistentVolume(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionPersistentVolume(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionPersistentVolumeAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionPersistentVolumeAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -14165,9 +15043,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -14211,15 +15086,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionPersistentVolumeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionPersistentVolumeAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionPersistentVolumeWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionPersistentVolumeWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14292,12 +15170,18 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume ReplacePersistentVolume(this IKubernetes operations, V1PersistentVolume body, string name, string pretty = default(string)) + public static V1PersistentVolume ReplacePersistentVolume(this IKubernetes operations, V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplacePersistentVolumeAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplacePersistentVolumeAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -14311,15 +15195,21 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplacePersistentVolumeAsync(this IKubernetes operations, V1PersistentVolume body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplacePersistentVolumeAsync(this IKubernetes operations, V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplacePersistentVolumeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplacePersistentVolumeWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14331,11 +15221,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PersistentVolume /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -14367,9 +15257,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeletePersistentVolume(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeletePersistentVolume(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeletePersistentVolumeAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeletePersistentVolumeAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -14378,11 +15268,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PersistentVolume /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -14417,9 +15307,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeletePersistentVolumeAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeletePersistentVolumeAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeletePersistentVolumeWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeletePersistentVolumeWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14436,12 +15326,18 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume PatchPersistentVolume(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1PersistentVolume PatchPersistentVolume(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchPersistentVolumeAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchPersistentVolumeAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -14455,15 +15351,21 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchPersistentVolumeAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPersistentVolumeAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchPersistentVolumeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchPersistentVolumeWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14520,12 +15422,18 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume ReplacePersistentVolumeStatus(this IKubernetes operations, V1PersistentVolume body, string name, string pretty = default(string)) + public static V1PersistentVolume ReplacePersistentVolumeStatus(this IKubernetes operations, V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplacePersistentVolumeStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplacePersistentVolumeStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -14539,15 +15447,21 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplacePersistentVolumeStatusAsync(this IKubernetes operations, V1PersistentVolume body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplacePersistentVolumeStatusAsync(this IKubernetes operations, V1PersistentVolume body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplacePersistentVolumeStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplacePersistentVolumeStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -14564,12 +15478,18 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume PatchPersistentVolumeStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1PersistentVolume PatchPersistentVolumeStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchPersistentVolumeStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchPersistentVolumeStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -14583,15 +15503,21 @@ namespace k8s /// /// name of the PersistentVolume /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchPersistentVolumeStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPersistentVolumeStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchPersistentVolumeStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchPersistentVolumeStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -15944,9 +16870,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -15990,12 +16913,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1InitializerConfigurationList ListInitializerConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1InitializerConfigurationList ListInitializerConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListInitializerConfigurationAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListInitializerConfigurationAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -16029,9 +16955,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16075,15 +16998,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListInitializerConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListInitializerConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListInitializerConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListInitializerConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16097,12 +17023,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1InitializerConfiguration CreateInitializerConfiguration(this IKubernetes operations, V1alpha1InitializerConfiguration body, string pretty = default(string)) + public static V1alpha1InitializerConfiguration CreateInitializerConfiguration(this IKubernetes operations, V1alpha1InitializerConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateInitializerConfigurationAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateInitializerConfigurationAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -16113,15 +17048,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateInitializerConfigurationAsync(this IKubernetes operations, V1alpha1InitializerConfiguration body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateInitializerConfigurationAsync(this IKubernetes operations, V1alpha1InitializerConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateInitializerConfigurationWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateInitializerConfigurationWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16158,9 +17102,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16204,12 +17145,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionInitializerConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionInitializerConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionInitializerConfigurationAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionInitializerConfigurationAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -16243,9 +17187,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16289,15 +17230,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionInitializerConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionInitializerConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionInitializerConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionInitializerConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16370,12 +17314,18 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1InitializerConfiguration ReplaceInitializerConfiguration(this IKubernetes operations, V1alpha1InitializerConfiguration body, string name, string pretty = default(string)) + public static V1alpha1InitializerConfiguration ReplaceInitializerConfiguration(this IKubernetes operations, V1alpha1InitializerConfiguration body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceInitializerConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceInitializerConfigurationAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -16389,15 +17339,21 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceInitializerConfigurationAsync(this IKubernetes operations, V1alpha1InitializerConfiguration body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceInitializerConfigurationAsync(this IKubernetes operations, V1alpha1InitializerConfiguration body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceInitializerConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceInitializerConfigurationWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16409,11 +17365,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the InitializerConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -16445,9 +17401,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteInitializerConfiguration(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteInitializerConfiguration(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteInitializerConfigurationAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteInitializerConfigurationAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -16456,11 +17412,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the InitializerConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -16495,9 +17451,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteInitializerConfigurationAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteInitializerConfigurationAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteInitializerConfigurationWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteInitializerConfigurationWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16514,12 +17470,18 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1InitializerConfiguration PatchInitializerConfiguration(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1alpha1InitializerConfiguration PatchInitializerConfiguration(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchInitializerConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchInitializerConfigurationAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -16533,15 +17495,21 @@ namespace k8s /// /// name of the InitializerConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchInitializerConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchInitializerConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchInitializerConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchInitializerConfigurationWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16606,9 +17574,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16652,12 +17617,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1MutatingWebhookConfigurationList ListMutatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1MutatingWebhookConfigurationList ListMutatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListMutatingWebhookConfigurationAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListMutatingWebhookConfigurationAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -16691,9 +17659,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16737,15 +17702,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListMutatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListMutatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListMutatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListMutatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16759,12 +17727,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1MutatingWebhookConfiguration CreateMutatingWebhookConfiguration(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string pretty = default(string)) + public static V1beta1MutatingWebhookConfiguration CreateMutatingWebhookConfiguration(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateMutatingWebhookConfigurationAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateMutatingWebhookConfigurationAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -16775,15 +17752,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateMutatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateMutatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateMutatingWebhookConfigurationWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateMutatingWebhookConfigurationWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -16820,9 +17806,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16866,12 +17849,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionMutatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionMutatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionMutatingWebhookConfigurationAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionMutatingWebhookConfigurationAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -16905,9 +17891,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -16951,15 +17934,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionMutatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionMutatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionMutatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionMutatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17032,12 +18018,18 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1MutatingWebhookConfiguration ReplaceMutatingWebhookConfiguration(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string name, string pretty = default(string)) + public static V1beta1MutatingWebhookConfiguration ReplaceMutatingWebhookConfiguration(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceMutatingWebhookConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceMutatingWebhookConfigurationAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -17051,15 +18043,21 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceMutatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceMutatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1MutatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceMutatingWebhookConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceMutatingWebhookConfigurationWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17071,11 +18069,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the MutatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -17107,9 +18105,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteMutatingWebhookConfiguration(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteMutatingWebhookConfiguration(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteMutatingWebhookConfigurationAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteMutatingWebhookConfigurationAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -17118,11 +18116,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the MutatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -17157,9 +18155,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteMutatingWebhookConfigurationAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteMutatingWebhookConfigurationAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteMutatingWebhookConfigurationWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteMutatingWebhookConfigurationWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17176,12 +18174,18 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1MutatingWebhookConfiguration PatchMutatingWebhookConfiguration(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1MutatingWebhookConfiguration PatchMutatingWebhookConfiguration(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchMutatingWebhookConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchMutatingWebhookConfigurationAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -17195,15 +18199,21 @@ namespace k8s /// /// name of the MutatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchMutatingWebhookConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchMutatingWebhookConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchMutatingWebhookConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchMutatingWebhookConfigurationWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17240,9 +18250,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -17286,12 +18293,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ValidatingWebhookConfigurationList ListValidatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1ValidatingWebhookConfigurationList ListValidatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListValidatingWebhookConfigurationAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListValidatingWebhookConfigurationAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -17325,9 +18335,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -17371,15 +18378,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListValidatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListValidatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListValidatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListValidatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17393,12 +18403,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ValidatingWebhookConfiguration CreateValidatingWebhookConfiguration(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string pretty = default(string)) + public static V1beta1ValidatingWebhookConfiguration CreateValidatingWebhookConfiguration(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateValidatingWebhookConfigurationAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateValidatingWebhookConfigurationAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -17409,15 +18428,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateValidatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateValidatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateValidatingWebhookConfigurationWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateValidatingWebhookConfigurationWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17454,9 +18482,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -17500,12 +18525,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionValidatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionValidatingWebhookConfiguration(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionValidatingWebhookConfigurationAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionValidatingWebhookConfigurationAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -17539,9 +18567,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -17585,15 +18610,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionValidatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionValidatingWebhookConfigurationAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionValidatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionValidatingWebhookConfigurationWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17666,12 +18694,18 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ValidatingWebhookConfiguration ReplaceValidatingWebhookConfiguration(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string name, string pretty = default(string)) + public static V1beta1ValidatingWebhookConfiguration ReplaceValidatingWebhookConfiguration(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceValidatingWebhookConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceValidatingWebhookConfigurationAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -17685,15 +18719,21 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceValidatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceValidatingWebhookConfigurationAsync(this IKubernetes operations, V1beta1ValidatingWebhookConfiguration body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceValidatingWebhookConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceValidatingWebhookConfigurationWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17705,11 +18745,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ValidatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -17741,9 +18781,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteValidatingWebhookConfiguration(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteValidatingWebhookConfiguration(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteValidatingWebhookConfigurationAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteValidatingWebhookConfigurationAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -17752,11 +18792,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ValidatingWebhookConfiguration /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -17791,9 +18831,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteValidatingWebhookConfigurationAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteValidatingWebhookConfigurationAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteValidatingWebhookConfigurationWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteValidatingWebhookConfigurationWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17810,12 +18850,18 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ValidatingWebhookConfiguration PatchValidatingWebhookConfiguration(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1ValidatingWebhookConfiguration PatchValidatingWebhookConfiguration(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchValidatingWebhookConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchValidatingWebhookConfigurationAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -17829,15 +18875,21 @@ namespace k8s /// /// name of the ValidatingWebhookConfiguration /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchValidatingWebhookConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchValidatingWebhookConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchValidatingWebhookConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchValidatingWebhookConfigurationWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -17930,9 +18982,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -17976,12 +19025,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinitionList ListCustomResourceDefinition(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1CustomResourceDefinitionList ListCustomResourceDefinition(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListCustomResourceDefinitionAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListCustomResourceDefinitionAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -18015,9 +19067,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18061,15 +19110,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListCustomResourceDefinitionAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListCustomResourceDefinitionAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListCustomResourceDefinitionWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListCustomResourceDefinitionWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18083,12 +19135,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinition CreateCustomResourceDefinition(this IKubernetes operations, V1beta1CustomResourceDefinition body, string pretty = default(string)) + public static V1beta1CustomResourceDefinition CreateCustomResourceDefinition(this IKubernetes operations, V1beta1CustomResourceDefinition body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateCustomResourceDefinitionAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateCustomResourceDefinitionAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -18099,15 +19160,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateCustomResourceDefinitionAsync(this IKubernetes operations, V1beta1CustomResourceDefinition body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateCustomResourceDefinitionAsync(this IKubernetes operations, V1beta1CustomResourceDefinition body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateCustomResourceDefinitionWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateCustomResourceDefinitionWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18144,9 +19214,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18190,12 +19257,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionCustomResourceDefinition(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionCustomResourceDefinition(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionCustomResourceDefinitionAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionCustomResourceDefinitionAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -18229,9 +19299,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18275,15 +19342,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionCustomResourceDefinitionAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionCustomResourceDefinitionAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionCustomResourceDefinitionWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionCustomResourceDefinitionWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18356,12 +19426,18 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinition ReplaceCustomResourceDefinition(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string pretty = default(string)) + public static V1beta1CustomResourceDefinition ReplaceCustomResourceDefinition(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceCustomResourceDefinitionAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceCustomResourceDefinitionAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -18375,15 +19451,21 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceCustomResourceDefinitionAsync(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceCustomResourceDefinitionAsync(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceCustomResourceDefinitionWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceCustomResourceDefinitionWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18395,11 +19477,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CustomResourceDefinition /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -18431,9 +19513,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCustomResourceDefinition(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteCustomResourceDefinition(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteCustomResourceDefinitionAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteCustomResourceDefinitionAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -18442,11 +19524,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CustomResourceDefinition /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -18481,9 +19563,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteCustomResourceDefinitionAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCustomResourceDefinitionAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCustomResourceDefinitionWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCustomResourceDefinitionWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18500,12 +19582,18 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinition PatchCustomResourceDefinition(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1CustomResourceDefinition PatchCustomResourceDefinition(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchCustomResourceDefinitionAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchCustomResourceDefinitionAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -18519,15 +19607,21 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchCustomResourceDefinitionAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchCustomResourceDefinitionAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchCustomResourceDefinitionWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchCustomResourceDefinitionWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18584,12 +19678,18 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinition ReplaceCustomResourceDefinitionStatus(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string pretty = default(string)) + public static V1beta1CustomResourceDefinition ReplaceCustomResourceDefinitionStatus(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceCustomResourceDefinitionStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceCustomResourceDefinitionStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -18603,15 +19703,21 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceCustomResourceDefinitionStatusAsync(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceCustomResourceDefinitionStatusAsync(this IKubernetes operations, V1beta1CustomResourceDefinition body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceCustomResourceDefinitionStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceCustomResourceDefinitionStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18628,12 +19734,18 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinition PatchCustomResourceDefinitionStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1CustomResourceDefinition PatchCustomResourceDefinitionStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchCustomResourceDefinitionStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchCustomResourceDefinitionStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -18647,15 +19759,21 @@ namespace k8s /// /// name of the CustomResourceDefinition /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchCustomResourceDefinitionStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchCustomResourceDefinitionStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchCustomResourceDefinitionStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchCustomResourceDefinitionStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18748,9 +19866,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18794,12 +19909,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1APIServiceList ListAPIService(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1APIServiceList ListAPIService(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListAPIServiceAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListAPIServiceAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -18833,9 +19951,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -18879,15 +19994,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListAPIServiceAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAPIServiceAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAPIServiceWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAPIServiceWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18901,12 +20019,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1APIService CreateAPIService(this IKubernetes operations, V1APIService body, string pretty = default(string)) + public static V1APIService CreateAPIService(this IKubernetes operations, V1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateAPIServiceAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateAPIServiceAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -18917,15 +20044,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateAPIServiceAsync(this IKubernetes operations, V1APIService body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAPIServiceAsync(this IKubernetes operations, V1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateAPIServiceWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateAPIServiceWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -18962,9 +20098,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -19008,12 +20141,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionAPIService(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionAPIService(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionAPIServiceAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionAPIServiceAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -19047,9 +20183,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -19093,15 +20226,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionAPIServiceAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionAPIServiceAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionAPIServiceWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionAPIServiceWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19174,12 +20310,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1APIService ReplaceAPIService(this IKubernetes operations, V1APIService body, string name, string pretty = default(string)) + public static V1APIService ReplaceAPIService(this IKubernetes operations, V1APIService body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceAPIServiceAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceAPIServiceAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -19193,15 +20335,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceAPIServiceAsync(this IKubernetes operations, V1APIService body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceAPIServiceAsync(this IKubernetes operations, V1APIService body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceAPIServiceWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceAPIServiceWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19213,11 +20361,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -19249,9 +20397,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteAPIService(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteAPIService(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteAPIServiceAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteAPIServiceAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -19260,11 +20408,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -19299,9 +20447,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteAPIServiceAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAPIServiceAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteAPIServiceWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteAPIServiceWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19318,12 +20466,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1APIService PatchAPIService(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1APIService PatchAPIService(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchAPIServiceAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchAPIServiceAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -19337,15 +20491,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchAPIServiceAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchAPIServiceAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchAPIServiceWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchAPIServiceWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19402,12 +20562,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1APIService ReplaceAPIServiceStatus(this IKubernetes operations, V1APIService body, string name, string pretty = default(string)) + public static V1APIService ReplaceAPIServiceStatus(this IKubernetes operations, V1APIService body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceAPIServiceStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceAPIServiceStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -19421,15 +20587,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceAPIServiceStatusAsync(this IKubernetes operations, V1APIService body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceAPIServiceStatusAsync(this IKubernetes operations, V1APIService body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceAPIServiceStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceAPIServiceStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19446,12 +20618,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1APIService PatchAPIServiceStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1APIService PatchAPIServiceStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchAPIServiceStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchAPIServiceStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -19465,15 +20643,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchAPIServiceStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchAPIServiceStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchAPIServiceStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchAPIServiceStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19538,9 +20722,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -19584,12 +20765,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIServiceList ListAPIService1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1APIServiceList ListAPIService1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListAPIService1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListAPIService1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -19623,9 +20807,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -19669,15 +20850,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListAPIService1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAPIService1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAPIService1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAPIService1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19691,12 +20875,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIService CreateAPIService1(this IKubernetes operations, V1beta1APIService body, string pretty = default(string)) + public static V1beta1APIService CreateAPIService1(this IKubernetes operations, V1beta1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateAPIService1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateAPIService1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -19707,15 +20900,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateAPIService1Async(this IKubernetes operations, V1beta1APIService body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAPIService1Async(this IKubernetes operations, V1beta1APIService body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateAPIService1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateAPIService1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19752,9 +20954,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -19798,12 +20997,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionAPIService1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionAPIService1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionAPIService1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionAPIService1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -19837,9 +21039,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -19883,15 +21082,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionAPIService1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionAPIService1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionAPIService1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionAPIService1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -19964,12 +21166,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIService ReplaceAPIService1(this IKubernetes operations, V1beta1APIService body, string name, string pretty = default(string)) + public static V1beta1APIService ReplaceAPIService1(this IKubernetes operations, V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceAPIService1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceAPIService1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -19983,15 +21191,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceAPIService1Async(this IKubernetes operations, V1beta1APIService body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceAPIService1Async(this IKubernetes operations, V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceAPIService1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceAPIService1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -20003,11 +21217,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -20039,9 +21253,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteAPIService1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteAPIService1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteAPIService1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteAPIService1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -20050,11 +21264,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the APIService /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -20089,9 +21303,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteAPIService1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAPIService1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteAPIService1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteAPIService1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -20108,12 +21322,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIService PatchAPIService1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1APIService PatchAPIService1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchAPIService1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchAPIService1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -20127,15 +21347,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchAPIService1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchAPIService1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchAPIService1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchAPIService1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -20192,12 +21418,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIService ReplaceAPIServiceStatus1(this IKubernetes operations, V1beta1APIService body, string name, string pretty = default(string)) + public static V1beta1APIService ReplaceAPIServiceStatus1(this IKubernetes operations, V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceAPIServiceStatus1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceAPIServiceStatus1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -20211,15 +21443,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceAPIServiceStatus1Async(this IKubernetes operations, V1beta1APIService body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceAPIServiceStatus1Async(this IKubernetes operations, V1beta1APIService body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceAPIServiceStatus1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceAPIServiceStatus1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -20236,12 +21474,18 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIService PatchAPIServiceStatus1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1APIService PatchAPIServiceStatus1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchAPIServiceStatus1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchAPIServiceStatus1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -20255,15 +21499,21 @@ namespace k8s /// /// name of the APIService /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchAPIServiceStatus1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchAPIServiceStatus1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchAPIServiceStatus1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchAPIServiceStatus1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -20887,9 +22137,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -20933,12 +22180,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ControllerRevisionList ListNamespacedControllerRevision(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ControllerRevisionList ListNamespacedControllerRevision(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedControllerRevisionAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedControllerRevisionAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -20975,9 +22225,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21021,15 +22268,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedControllerRevisionAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedControllerRevisionAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedControllerRevisionWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedControllerRevisionWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21046,12 +22296,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ControllerRevision CreateNamespacedControllerRevision(this IKubernetes operations, V1ControllerRevision body, string namespaceParameter, string pretty = default(string)) + public static V1ControllerRevision CreateNamespacedControllerRevision(this IKubernetes operations, V1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedControllerRevisionAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedControllerRevisionAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -21065,15 +22324,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedControllerRevisionAsync(this IKubernetes operations, V1ControllerRevision body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedControllerRevisionAsync(this IKubernetes operations, V1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedControllerRevisionWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedControllerRevisionWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21113,9 +22381,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21159,12 +22424,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedControllerRevision(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedControllerRevision(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedControllerRevisionAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedControllerRevisionAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -21201,9 +22469,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21247,15 +22512,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedControllerRevisionAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedControllerRevisionAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedControllerRevisionWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedControllerRevisionWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21337,12 +22605,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ControllerRevision ReplaceNamespacedControllerRevision(this IKubernetes operations, V1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ControllerRevision ReplaceNamespacedControllerRevision(this IKubernetes operations, V1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedControllerRevisionAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedControllerRevisionAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -21359,15 +22633,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedControllerRevisionAsync(this IKubernetes operations, V1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedControllerRevisionAsync(this IKubernetes operations, V1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedControllerRevisionWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedControllerRevisionWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21379,14 +22659,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -21418,9 +22698,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedControllerRevision(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedControllerRevision(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedControllerRevisionAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedControllerRevisionAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -21429,14 +22709,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -21471,9 +22751,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedControllerRevisionAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedControllerRevisionAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedControllerRevisionWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedControllerRevisionWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21493,12 +22773,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ControllerRevision PatchNamespacedControllerRevision(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ControllerRevision PatchNamespacedControllerRevision(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedControllerRevisionAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedControllerRevisionAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -21515,15 +22801,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedControllerRevisionAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedControllerRevisionAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedControllerRevisionWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedControllerRevisionWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21563,9 +22855,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21609,12 +22898,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DaemonSetList ListNamespacedDaemonSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1DaemonSetList ListNamespacedDaemonSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDaemonSetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDaemonSetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -21651,9 +22943,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21697,15 +22986,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDaemonSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDaemonSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDaemonSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDaemonSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21722,12 +23014,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DaemonSet CreateNamespacedDaemonSet(this IKubernetes operations, V1DaemonSet body, string namespaceParameter, string pretty = default(string)) + public static V1DaemonSet CreateNamespacedDaemonSet(this IKubernetes operations, V1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDaemonSetAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDaemonSetAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -21741,15 +23042,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDaemonSetAsync(this IKubernetes operations, V1DaemonSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDaemonSetAsync(this IKubernetes operations, V1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDaemonSetWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDaemonSetWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -21789,9 +23099,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21835,12 +23142,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDaemonSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDaemonSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDaemonSetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDaemonSetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -21877,9 +23187,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -21923,15 +23230,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDaemonSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDaemonSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDaemonSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDaemonSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22013,12 +23323,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DaemonSet ReplaceNamespacedDaemonSet(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1DaemonSet ReplaceNamespacedDaemonSet(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDaemonSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDaemonSetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -22035,15 +23351,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDaemonSetAsync(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDaemonSetAsync(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDaemonSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDaemonSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22055,14 +23377,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -22094,9 +23416,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDaemonSet(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDaemonSet(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDaemonSetAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDaemonSetAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -22105,14 +23427,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -22147,9 +23469,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDaemonSetAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDaemonSetAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDaemonSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDaemonSetWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22169,12 +23491,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DaemonSet PatchNamespacedDaemonSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1DaemonSet PatchNamespacedDaemonSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDaemonSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDaemonSetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -22191,15 +23519,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDaemonSetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDaemonSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDaemonSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22265,12 +23599,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DaemonSet ReplaceNamespacedDaemonSetStatus(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1DaemonSet ReplaceNamespacedDaemonSetStatus(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDaemonSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDaemonSetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -22287,15 +23627,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDaemonSetStatusAsync(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDaemonSetStatusAsync(this IKubernetes operations, V1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDaemonSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDaemonSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22315,12 +23661,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DaemonSet PatchNamespacedDaemonSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1DaemonSet PatchNamespacedDaemonSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDaemonSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDaemonSetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -22337,15 +23689,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDaemonSetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22385,9 +23743,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -22431,12 +23786,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1DeploymentList ListNamespacedDeployment(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1DeploymentList ListNamespacedDeployment(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDeploymentAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDeploymentAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -22473,9 +23831,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -22519,15 +23874,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDeploymentAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDeploymentAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDeploymentWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDeploymentWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22544,12 +23902,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Deployment CreateNamespacedDeployment(this IKubernetes operations, V1Deployment body, string namespaceParameter, string pretty = default(string)) + public static V1Deployment CreateNamespacedDeployment(this IKubernetes operations, V1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDeploymentAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDeploymentAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -22563,15 +23930,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDeploymentAsync(this IKubernetes operations, V1Deployment body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDeploymentAsync(this IKubernetes operations, V1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDeploymentWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDeploymentWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22611,9 +23987,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -22657,12 +24030,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDeployment(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDeployment(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDeploymentAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDeploymentAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -22699,9 +24075,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -22745,15 +24118,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDeploymentAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDeploymentAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDeploymentWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDeploymentWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22835,12 +24211,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Deployment ReplaceNamespacedDeployment(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Deployment ReplaceNamespacedDeployment(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -22857,15 +24239,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentAsync(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentAsync(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22877,14 +24265,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -22916,9 +24304,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDeployment(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDeployment(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDeploymentAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDeploymentAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -22927,14 +24315,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -22969,9 +24357,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDeploymentAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDeploymentAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDeploymentWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDeploymentWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -22991,12 +24379,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Deployment PatchNamespacedDeployment(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Deployment PatchNamespacedDeployment(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23013,15 +24407,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23087,12 +24487,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale ReplaceNamespacedDeploymentScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale ReplaceNamespacedDeploymentScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23109,15 +24515,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23137,12 +24549,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale PatchNamespacedDeploymentScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale PatchNamespacedDeploymentScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23159,15 +24577,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23233,12 +24657,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Deployment ReplaceNamespacedDeploymentStatus(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Deployment ReplaceNamespacedDeploymentStatus(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23255,15 +24685,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentStatusAsync(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentStatusAsync(this IKubernetes operations, V1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23283,12 +24719,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Deployment PatchNamespacedDeploymentStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Deployment PatchNamespacedDeploymentStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23305,15 +24747,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23353,9 +24801,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -23399,12 +24844,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicaSetList ListNamespacedReplicaSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ReplicaSetList ListNamespacedReplicaSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedReplicaSetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedReplicaSetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -23441,9 +24889,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -23487,15 +24932,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedReplicaSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedReplicaSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedReplicaSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedReplicaSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23512,12 +24960,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicaSet CreateNamespacedReplicaSet(this IKubernetes operations, V1ReplicaSet body, string namespaceParameter, string pretty = default(string)) + public static V1ReplicaSet CreateNamespacedReplicaSet(this IKubernetes operations, V1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedReplicaSetAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedReplicaSetAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -23531,15 +24988,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedReplicaSetAsync(this IKubernetes operations, V1ReplicaSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedReplicaSetAsync(this IKubernetes operations, V1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedReplicaSetWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedReplicaSetWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23579,9 +25045,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -23625,12 +25088,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedReplicaSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedReplicaSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedReplicaSetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedReplicaSetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -23667,9 +25133,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -23713,15 +25176,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedReplicaSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedReplicaSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedReplicaSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedReplicaSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23803,12 +25269,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicaSet ReplaceNamespacedReplicaSet(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicaSet ReplaceNamespacedReplicaSet(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23825,15 +25297,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetAsync(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetAsync(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23845,14 +25323,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -23884,9 +25362,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedReplicaSet(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedReplicaSet(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedReplicaSetAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedReplicaSetAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -23895,14 +25373,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -23937,9 +25415,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedReplicaSetAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedReplicaSetAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedReplicaSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedReplicaSetWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -23959,12 +25437,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicaSet PatchNamespacedReplicaSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicaSet PatchNamespacedReplicaSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -23981,15 +25465,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24055,12 +25545,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale ReplaceNamespacedReplicaSetScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale ReplaceNamespacedReplicaSetScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -24077,15 +25573,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24105,12 +25607,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale PatchNamespacedReplicaSetScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale PatchNamespacedReplicaSetScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -24127,15 +25635,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24201,12 +25715,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicaSet ReplaceNamespacedReplicaSetStatus(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicaSet ReplaceNamespacedReplicaSetStatus(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -24223,15 +25743,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetStatusAsync(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetStatusAsync(this IKubernetes operations, V1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24251,12 +25777,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicaSet PatchNamespacedReplicaSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicaSet PatchNamespacedReplicaSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -24273,15 +25805,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24321,9 +25859,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -24367,12 +25902,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StatefulSetList ListNamespacedStatefulSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1StatefulSetList ListNamespacedStatefulSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedStatefulSetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedStatefulSetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -24409,9 +25947,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -24455,15 +25990,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedStatefulSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedStatefulSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedStatefulSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedStatefulSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24480,12 +26018,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StatefulSet CreateNamespacedStatefulSet(this IKubernetes operations, V1StatefulSet body, string namespaceParameter, string pretty = default(string)) + public static V1StatefulSet CreateNamespacedStatefulSet(this IKubernetes operations, V1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedStatefulSetAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedStatefulSetAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -24499,15 +26046,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedStatefulSetAsync(this IKubernetes operations, V1StatefulSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedStatefulSetAsync(this IKubernetes operations, V1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedStatefulSetWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedStatefulSetWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24547,9 +26103,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -24593,12 +26146,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedStatefulSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedStatefulSet(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedStatefulSetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedStatefulSetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -24635,9 +26191,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -24681,15 +26234,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedStatefulSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedStatefulSetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedStatefulSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedStatefulSetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24771,12 +26327,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StatefulSet ReplaceNamespacedStatefulSet(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1StatefulSet ReplaceNamespacedStatefulSet(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -24793,15 +26355,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetAsync(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetAsync(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24813,14 +26381,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -24852,9 +26420,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedStatefulSet(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedStatefulSet(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedStatefulSetAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedStatefulSetAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -24863,14 +26431,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -24905,9 +26473,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedStatefulSetAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedStatefulSetAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedStatefulSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedStatefulSetWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -24927,12 +26495,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StatefulSet PatchNamespacedStatefulSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1StatefulSet PatchNamespacedStatefulSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -24949,15 +26523,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -25023,12 +26603,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale ReplaceNamespacedStatefulSetScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale ReplaceNamespacedStatefulSetScale(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -25045,15 +26631,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetScaleAsync(this IKubernetes operations, V1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -25073,12 +26665,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Scale PatchNamespacedStatefulSetScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale PatchNamespacedStatefulSetScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -25095,15 +26693,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -25169,12 +26773,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StatefulSet ReplaceNamespacedStatefulSetStatus(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1StatefulSet ReplaceNamespacedStatefulSetStatus(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -25191,15 +26801,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetStatusAsync(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetStatusAsync(this IKubernetes operations, V1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -25219,12 +26835,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StatefulSet PatchNamespacedStatefulSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1StatefulSet PatchNamespacedStatefulSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -25241,15 +26863,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26021,9 +27649,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26067,12 +27692,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ControllerRevisionList ListNamespacedControllerRevision1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1ControllerRevisionList ListNamespacedControllerRevision1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedControllerRevision1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedControllerRevision1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -26109,9 +27737,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26155,15 +27780,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedControllerRevision1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedControllerRevision1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedControllerRevision1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedControllerRevision1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26180,12 +27808,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ControllerRevision CreateNamespacedControllerRevision1(this IKubernetes operations, V1beta1ControllerRevision body, string namespaceParameter, string pretty = default(string)) + public static V1beta1ControllerRevision CreateNamespacedControllerRevision1(this IKubernetes operations, V1beta1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedControllerRevision1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedControllerRevision1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -26199,15 +27836,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedControllerRevision1Async(this IKubernetes operations, V1beta1ControllerRevision body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedControllerRevision1Async(this IKubernetes operations, V1beta1ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedControllerRevision1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedControllerRevision1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26247,9 +27893,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26293,12 +27936,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedControllerRevision1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedControllerRevision1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedControllerRevision1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedControllerRevision1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -26335,9 +27981,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26381,15 +28024,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedControllerRevision1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedControllerRevision1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedControllerRevision1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedControllerRevision1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26471,12 +28117,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ControllerRevision ReplaceNamespacedControllerRevision1(this IKubernetes operations, V1beta1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ControllerRevision ReplaceNamespacedControllerRevision1(this IKubernetes operations, V1beta1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedControllerRevision1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedControllerRevision1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -26493,15 +28145,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedControllerRevision1Async(this IKubernetes operations, V1beta1ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedControllerRevision1Async(this IKubernetes operations, V1beta1ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedControllerRevision1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedControllerRevision1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26513,14 +28171,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -26552,9 +28210,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedControllerRevision1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedControllerRevision1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedControllerRevision1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedControllerRevision1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -26563,14 +28221,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -26605,9 +28263,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedControllerRevision1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedControllerRevision1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedControllerRevision1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedControllerRevision1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26627,12 +28285,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ControllerRevision PatchNamespacedControllerRevision1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ControllerRevision PatchNamespacedControllerRevision1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedControllerRevision1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedControllerRevision1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -26649,15 +28313,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedControllerRevision1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedControllerRevision1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedControllerRevision1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedControllerRevision1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26697,9 +28367,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26743,12 +28410,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1DeploymentList ListNamespacedDeployment1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static Appsv1beta1DeploymentList ListNamespacedDeployment1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDeployment1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDeployment1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -26785,9 +28455,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26831,15 +28498,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDeployment1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDeployment1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDeployment1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDeployment1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26856,12 +28526,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment CreateNamespacedDeployment1(this IKubernetes operations, Appsv1beta1Deployment body, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment CreateNamespacedDeployment1(this IKubernetes operations, Appsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDeployment1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDeployment1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -26875,15 +28554,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDeployment1Async(this IKubernetes operations, Appsv1beta1Deployment body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDeployment1Async(this IKubernetes operations, Appsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDeployment1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDeployment1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -26923,9 +28611,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -26969,12 +28654,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDeployment1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDeployment1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDeployment1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDeployment1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -27011,9 +28699,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -27057,15 +28742,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDeployment1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDeployment1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDeployment1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDeployment1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27147,12 +28835,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment ReplaceNamespacedDeployment1(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment ReplaceNamespacedDeployment1(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeployment1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeployment1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -27169,15 +28863,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeployment1Async(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeployment1Async(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeployment1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeployment1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27189,14 +28889,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -27228,9 +28928,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDeployment1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDeployment1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDeployment1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDeployment1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -27239,14 +28939,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -27281,9 +28981,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDeployment1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDeployment1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDeployment1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDeployment1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27303,12 +29003,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment PatchNamespacedDeployment1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment PatchNamespacedDeployment1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeployment1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeployment1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -27325,15 +29031,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeployment1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeployment1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeployment1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeployment1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27353,12 +29065,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1DeploymentStatus CreateNamespacedDeploymentRollback(this IKubernetes operations, Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Status CreateNamespacedDeploymentRollback(this IKubernetes operations, Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDeploymentRollbackAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDeploymentRollbackAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -27375,15 +29097,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDeploymentRollbackAsync(this IKubernetes operations, Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDeploymentRollbackAsync(this IKubernetes operations, Appsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDeploymentRollbackWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDeploymentRollbackWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27449,12 +29181,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Scale ReplaceNamespacedDeploymentScale1(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Scale ReplaceNamespacedDeploymentScale1(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentScale1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -27471,15 +29209,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentScale1Async(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentScale1Async(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentScale1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27499,12 +29243,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Scale PatchNamespacedDeploymentScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Scale PatchNamespacedDeploymentScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentScale1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -27521,15 +29271,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScale1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentScale1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentScale1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27595,12 +29351,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment ReplaceNamespacedDeploymentStatus1(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment ReplaceNamespacedDeploymentStatus1(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -27617,15 +29379,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentStatus1Async(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentStatus1Async(this IKubernetes operations, Appsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27645,12 +29413,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment PatchNamespacedDeploymentStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment PatchNamespacedDeploymentStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -27667,15 +29441,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27715,9 +29495,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -27761,12 +29538,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSetList ListNamespacedStatefulSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1StatefulSetList ListNamespacedStatefulSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedStatefulSet1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedStatefulSet1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -27803,9 +29583,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -27849,15 +29626,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedStatefulSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedStatefulSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedStatefulSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedStatefulSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27874,12 +29654,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet CreateNamespacedStatefulSet1(this IKubernetes operations, V1beta1StatefulSet body, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet CreateNamespacedStatefulSet1(this IKubernetes operations, V1beta1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedStatefulSet1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedStatefulSet1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -27893,15 +29682,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedStatefulSet1Async(this IKubernetes operations, V1beta1StatefulSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedStatefulSet1Async(this IKubernetes operations, V1beta1StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedStatefulSet1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedStatefulSet1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -27941,9 +29739,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -27987,12 +29782,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedStatefulSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedStatefulSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedStatefulSet1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedStatefulSet1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -28029,9 +29827,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -28075,15 +29870,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedStatefulSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedStatefulSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedStatefulSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedStatefulSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28165,12 +29963,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet ReplaceNamespacedStatefulSet1(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet ReplaceNamespacedStatefulSet1(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSet1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -28187,15 +29991,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSet1Async(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSet1Async(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28207,14 +30017,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -28246,9 +30056,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedStatefulSet1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedStatefulSet1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedStatefulSet1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedStatefulSet1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -28257,14 +30067,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -28299,9 +30109,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedStatefulSet1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedStatefulSet1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedStatefulSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedStatefulSet1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28321,12 +30131,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet PatchNamespacedStatefulSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet PatchNamespacedStatefulSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSet1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -28343,15 +30159,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSet1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSet1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28417,12 +30239,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Scale ReplaceNamespacedStatefulSetScale1(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Scale ReplaceNamespacedStatefulSetScale1(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetScale1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -28439,15 +30267,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetScale1Async(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetScale1Async(this IKubernetes operations, Appsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28467,12 +30301,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Scale PatchNamespacedStatefulSetScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Scale PatchNamespacedStatefulSetScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetScale1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -28489,15 +30329,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetScale1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetScale1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28563,12 +30409,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet ReplaceNamespacedStatefulSetStatus1(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet ReplaceNamespacedStatefulSetStatus1(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -28585,15 +30437,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetStatus1Async(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetStatus1Async(this IKubernetes operations, V1beta1StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -28613,12 +30471,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet PatchNamespacedStatefulSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet PatchNamespacedStatefulSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -28635,15 +30499,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -29415,9 +31285,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -29461,12 +31328,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ControllerRevisionList ListNamespacedControllerRevision2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta2ControllerRevisionList ListNamespacedControllerRevision2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedControllerRevision2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedControllerRevision2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -29503,9 +31373,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -29549,15 +31416,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedControllerRevision2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedControllerRevision2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedControllerRevision2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedControllerRevision2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -29574,12 +31444,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ControllerRevision CreateNamespacedControllerRevision2(this IKubernetes operations, V1beta2ControllerRevision body, string namespaceParameter, string pretty = default(string)) + public static V1beta2ControllerRevision CreateNamespacedControllerRevision2(this IKubernetes operations, V1beta2ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedControllerRevision2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedControllerRevision2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -29593,15 +31472,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedControllerRevision2Async(this IKubernetes operations, V1beta2ControllerRevision body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedControllerRevision2Async(this IKubernetes operations, V1beta2ControllerRevision body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedControllerRevision2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedControllerRevision2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -29641,9 +31529,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -29687,12 +31572,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedControllerRevision2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedControllerRevision2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedControllerRevision2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedControllerRevision2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -29729,9 +31617,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -29775,15 +31660,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedControllerRevision2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedControllerRevision2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedControllerRevision2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedControllerRevision2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -29865,12 +31753,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ControllerRevision ReplaceNamespacedControllerRevision2(this IKubernetes operations, V1beta2ControllerRevision body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ControllerRevision ReplaceNamespacedControllerRevision2(this IKubernetes operations, V1beta2ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedControllerRevision2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedControllerRevision2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -29887,15 +31781,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedControllerRevision2Async(this IKubernetes operations, V1beta2ControllerRevision body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedControllerRevision2Async(this IKubernetes operations, V1beta2ControllerRevision body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedControllerRevision2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedControllerRevision2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -29907,14 +31807,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -29946,9 +31846,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedControllerRevision2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedControllerRevision2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedControllerRevision2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedControllerRevision2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -29957,14 +31857,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ControllerRevision /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -29999,9 +31899,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedControllerRevision2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedControllerRevision2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedControllerRevision2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedControllerRevision2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30021,12 +31921,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ControllerRevision PatchNamespacedControllerRevision2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ControllerRevision PatchNamespacedControllerRevision2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedControllerRevision2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedControllerRevision2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -30043,15 +31949,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedControllerRevision2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedControllerRevision2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedControllerRevision2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedControllerRevision2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30091,9 +32003,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -30137,12 +32046,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSetList ListNamespacedDaemonSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta2DaemonSetList ListNamespacedDaemonSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDaemonSet1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDaemonSet1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -30179,9 +32091,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -30225,15 +32134,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDaemonSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDaemonSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDaemonSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDaemonSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30250,12 +32162,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet CreateNamespacedDaemonSet1(this IKubernetes operations, V1beta2DaemonSet body, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet CreateNamespacedDaemonSet1(this IKubernetes operations, V1beta2DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDaemonSet1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDaemonSet1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -30269,15 +32190,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDaemonSet1Async(this IKubernetes operations, V1beta2DaemonSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDaemonSet1Async(this IKubernetes operations, V1beta2DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDaemonSet1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDaemonSet1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30317,9 +32247,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -30363,12 +32290,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDaemonSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDaemonSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDaemonSet1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDaemonSet1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -30405,9 +32335,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -30451,15 +32378,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDaemonSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDaemonSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDaemonSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDaemonSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30541,12 +32471,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet ReplaceNamespacedDaemonSet1(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet ReplaceNamespacedDaemonSet1(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDaemonSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDaemonSet1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -30563,15 +32499,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDaemonSet1Async(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDaemonSet1Async(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDaemonSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDaemonSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30583,14 +32525,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -30622,9 +32564,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDaemonSet1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDaemonSet1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDaemonSet1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDaemonSet1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -30633,14 +32575,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -30675,9 +32617,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDaemonSet1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDaemonSet1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDaemonSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDaemonSet1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30697,12 +32639,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet PatchNamespacedDaemonSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet PatchNamespacedDaemonSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDaemonSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDaemonSet1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -30719,15 +32667,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSet1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDaemonSet1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDaemonSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDaemonSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30793,12 +32747,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet ReplaceNamespacedDaemonSetStatus1(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet ReplaceNamespacedDaemonSetStatus1(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDaemonSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDaemonSetStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -30815,15 +32775,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDaemonSetStatus1Async(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDaemonSetStatus1Async(this IKubernetes operations, V1beta2DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDaemonSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDaemonSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30843,12 +32809,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet PatchNamespacedDaemonSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet PatchNamespacedDaemonSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDaemonSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDaemonSetStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -30865,15 +32837,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDaemonSetStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -30913,9 +32891,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -30959,12 +32934,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DeploymentList ListNamespacedDeployment2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta2DeploymentList ListNamespacedDeployment2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDeployment2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDeployment2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -31001,9 +32979,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -31047,15 +33022,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDeployment2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDeployment2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDeployment2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDeployment2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31072,12 +33050,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment CreateNamespacedDeployment2(this IKubernetes operations, V1beta2Deployment body, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment CreateNamespacedDeployment2(this IKubernetes operations, V1beta2Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDeployment2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDeployment2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -31091,15 +33078,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDeployment2Async(this IKubernetes operations, V1beta2Deployment body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDeployment2Async(this IKubernetes operations, V1beta2Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDeployment2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDeployment2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31139,9 +33135,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -31185,12 +33178,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDeployment2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDeployment2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDeployment2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDeployment2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -31227,9 +33223,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -31273,15 +33266,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDeployment2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDeployment2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDeployment2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDeployment2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31363,12 +33359,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment ReplaceNamespacedDeployment2(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment ReplaceNamespacedDeployment2(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeployment2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeployment2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -31385,15 +33387,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeployment2Async(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeployment2Async(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeployment2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeployment2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31405,14 +33413,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -31444,9 +33452,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDeployment2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDeployment2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDeployment2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDeployment2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -31455,14 +33463,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -31497,9 +33505,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDeployment2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDeployment2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDeployment2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDeployment2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31519,12 +33527,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment PatchNamespacedDeployment2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment PatchNamespacedDeployment2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeployment2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeployment2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -31541,15 +33555,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeployment2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeployment2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeployment2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeployment2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31615,12 +33635,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale ReplaceNamespacedDeploymentScale2(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale ReplaceNamespacedDeploymentScale2(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentScale2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -31637,15 +33663,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentScale2Async(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentScale2Async(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentScale2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31665,12 +33697,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale PatchNamespacedDeploymentScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale PatchNamespacedDeploymentScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentScale2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -31687,15 +33725,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScale2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentScale2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentScale2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31761,12 +33805,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment ReplaceNamespacedDeploymentStatus2(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment ReplaceNamespacedDeploymentStatus2(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -31783,15 +33833,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentStatus2Async(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentStatus2Async(this IKubernetes operations, V1beta2Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31811,12 +33867,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment PatchNamespacedDeploymentStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment PatchNamespacedDeploymentStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -31833,15 +33895,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -31881,9 +33949,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -31927,12 +33992,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSetList ListNamespacedReplicaSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta2ReplicaSetList ListNamespacedReplicaSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedReplicaSet1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedReplicaSet1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -31969,9 +34037,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -32015,15 +34080,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedReplicaSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedReplicaSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedReplicaSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedReplicaSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32040,12 +34108,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet CreateNamespacedReplicaSet1(this IKubernetes operations, V1beta2ReplicaSet body, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet CreateNamespacedReplicaSet1(this IKubernetes operations, V1beta2ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedReplicaSet1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedReplicaSet1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -32059,15 +34136,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedReplicaSet1Async(this IKubernetes operations, V1beta2ReplicaSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedReplicaSet1Async(this IKubernetes operations, V1beta2ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedReplicaSet1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedReplicaSet1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32107,9 +34193,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -32153,12 +34236,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedReplicaSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedReplicaSet1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedReplicaSet1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedReplicaSet1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -32195,9 +34281,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -32241,15 +34324,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedReplicaSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedReplicaSet1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedReplicaSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedReplicaSet1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32331,12 +34417,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet ReplaceNamespacedReplicaSet1(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet ReplaceNamespacedReplicaSet1(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSet1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -32353,15 +34445,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSet1Async(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSet1Async(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32373,14 +34471,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -32412,9 +34510,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedReplicaSet1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedReplicaSet1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedReplicaSet1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedReplicaSet1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -32423,14 +34521,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -32465,9 +34563,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedReplicaSet1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedReplicaSet1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedReplicaSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedReplicaSet1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32487,12 +34585,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet PatchNamespacedReplicaSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet PatchNamespacedReplicaSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSet1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -32509,15 +34613,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSet1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSet1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSet1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32583,12 +34693,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale ReplaceNamespacedReplicaSetScale1(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale ReplaceNamespacedReplicaSetScale1(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetScale1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -32605,15 +34721,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetScale1Async(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetScale1Async(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32633,12 +34755,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale PatchNamespacedReplicaSetScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale PatchNamespacedReplicaSetScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetScale1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -32655,15 +34783,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetScale1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetScale1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32729,12 +34863,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet ReplaceNamespacedReplicaSetStatus1(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet ReplaceNamespacedReplicaSetStatus1(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -32751,15 +34891,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetStatus1Async(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetStatus1Async(this IKubernetes operations, V1beta2ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32779,12 +34925,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet PatchNamespacedReplicaSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet PatchNamespacedReplicaSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -32801,15 +34953,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -32849,9 +35007,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -32895,12 +35050,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSetList ListNamespacedStatefulSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta2StatefulSetList ListNamespacedStatefulSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedStatefulSet2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedStatefulSet2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -32937,9 +35095,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -32983,15 +35138,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedStatefulSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedStatefulSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedStatefulSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedStatefulSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33008,12 +35166,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet CreateNamespacedStatefulSet2(this IKubernetes operations, V1beta2StatefulSet body, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet CreateNamespacedStatefulSet2(this IKubernetes operations, V1beta2StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedStatefulSet2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedStatefulSet2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -33027,15 +35194,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedStatefulSet2Async(this IKubernetes operations, V1beta2StatefulSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedStatefulSet2Async(this IKubernetes operations, V1beta2StatefulSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedStatefulSet2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedStatefulSet2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33075,9 +35251,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -33121,12 +35294,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedStatefulSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedStatefulSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedStatefulSet2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedStatefulSet2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -33163,9 +35339,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -33209,15 +35382,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedStatefulSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedStatefulSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedStatefulSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedStatefulSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33299,12 +35475,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet ReplaceNamespacedStatefulSet2(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet ReplaceNamespacedStatefulSet2(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSet2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSet2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -33321,15 +35503,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSet2Async(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSet2Async(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSet2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33341,14 +35529,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -33380,9 +35568,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedStatefulSet2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedStatefulSet2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedStatefulSet2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedStatefulSet2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -33391,14 +35579,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StatefulSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -33433,9 +35621,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedStatefulSet2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedStatefulSet2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedStatefulSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedStatefulSet2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33455,12 +35643,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet PatchNamespacedStatefulSet2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet PatchNamespacedStatefulSet2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSet2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSet2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -33477,15 +35671,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSet2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSet2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSet2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33551,12 +35751,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale ReplaceNamespacedStatefulSetScale2(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale ReplaceNamespacedStatefulSetScale2(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetScale2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -33573,15 +35779,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetScale2Async(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetScale2Async(this IKubernetes operations, V1beta2Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33601,12 +35813,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale PatchNamespacedStatefulSetScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale PatchNamespacedStatefulSetScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetScale2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -33623,15 +35841,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetScale2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetScale2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33697,12 +35921,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet ReplaceNamespacedStatefulSetStatus2(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet ReplaceNamespacedStatefulSetStatus2(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedStatefulSetStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedStatefulSetStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -33719,15 +35949,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedStatefulSetStatus2Async(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedStatefulSetStatus2Async(this IKubernetes operations, V1beta2StatefulSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedStatefulSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedStatefulSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -33747,12 +35983,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet PatchNamespacedStatefulSetStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet PatchNamespacedStatefulSetStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedStatefulSetStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedStatefulSetStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -33769,15 +36011,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedStatefulSetStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedStatefulSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedStatefulSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34192,28 +36440,166 @@ namespace k8s } /// - /// create a TokenReview + /// list or watch objects of kind AuditSink /// /// /// The operations group for this extension method. /// - /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. /// /// /// If 'true', then the output is pretty printed. /// - public static V1TokenReview CreateTokenReview(this IKubernetes operations, V1TokenReview body, string pretty = default(string)) + public static V1alpha1AuditSinkList ListAuditSink(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateTokenReviewAsync(body, pretty).GetAwaiter().GetResult(); + return operations.ListAuditSinkAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// - /// create a TokenReview + /// list or watch objects of kind AuditSink /// /// /// The operations group for this extension method. /// - /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. /// /// /// If 'true', then the output is pretty printed. @@ -34221,9 +36607,537 @@ namespace k8s /// /// The cancellation token. /// - public static async Task CreateTokenReviewAsync(this IKubernetes operations, V1TokenReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAuditSinkAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateTokenReviewWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAuditSinkWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// create an AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1AuditSink CreateAuditSink(this IKubernetes operations, V1alpha1AuditSink body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.CreateAuditSinkAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// create an AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task CreateAuditSinkAsync(this IKubernetes operations, V1alpha1AuditSink body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateAuditSinkWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// delete collection of AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1Status DeleteCollectionAuditSink(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.DeleteCollectionAuditSinkAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// delete collection of AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteCollectionAuditSinkAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteCollectionAuditSinkWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// read the specified AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the AuditSink + /// + /// + /// Should the export be exact. Exact export maintains cluster-specific fields + /// like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user can not + /// specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1AuditSink ReadAuditSink(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string)) + { + return operations.ReadAuditSinkAsync(name, exact, export, pretty).GetAwaiter().GetResult(); + } + + /// + /// read the specified AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the AuditSink + /// + /// + /// Should the export be exact. Exact export maintains cluster-specific fields + /// like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user can not + /// specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ReadAuditSinkAsync(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReadAuditSinkWithHttpMessagesAsync(name, exact, export, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// replace the specified AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1AuditSink ReplaceAuditSink(this IKubernetes operations, V1alpha1AuditSink body, string name, string dryRun = default(string), string pretty = default(string)) + { + return operations.ReplaceAuditSinkAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); + } + + /// + /// replace the specified AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ReplaceAuditSinkAsync(this IKubernetes operations, V1alpha1AuditSink body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReplaceAuditSinkWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// delete an AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the AuditSink + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// 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. Acceptable values are: 'Orphan' - orphan + /// the dependents; 'Background' - allow the garbage collector to delete the + /// dependents in the background; 'Foreground' - a cascading policy that + /// deletes all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1Status DeleteAuditSink(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + { + return operations.DeleteAuditSinkAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + } + + /// + /// delete an AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the AuditSink + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// 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. Acceptable values are: 'Orphan' - orphan + /// the dependents; 'Background' - allow the garbage collector to delete the + /// dependents in the background; 'Foreground' - a cascading policy that + /// deletes all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAuditSinkAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteAuditSinkWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// partially update the specified AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1AuditSink PatchAuditSink(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) + { + return operations.PatchAuditSinkAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); + } + + /// + /// partially update the specified AuditSink + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the AuditSink + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task PatchAuditSinkAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PatchAuditSinkWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// get information of a group + /// + /// + /// The operations group for this extension method. + /// + public static V1APIGroup GetAPIGroup5(this IKubernetes operations) + { + return operations.GetAPIGroup5Async().GetAwaiter().GetResult(); + } + + /// + /// get information of a group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetAPIGroup5Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAPIGroup5WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34265,12 +37179,22 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1TokenReview CreateTokenReview1(this IKubernetes operations, V1beta1TokenReview body, string pretty = default(string)) + public static V1TokenReview CreateTokenReview(this IKubernetes operations, V1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateTokenReview1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateTokenReviewAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -34281,43 +37205,25 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateTokenReview1Async(this IKubernetes operations, V1beta1TokenReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateTokenReviewAsync(this IKubernetes operations, V1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateTokenReview1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// get information of a group - /// - /// - /// The operations group for this extension method. - /// - public static V1APIGroup GetAPIGroup5(this IKubernetes operations) - { - return operations.GetAPIGroup5Async().GetAwaiter().GetResult(); - } - - /// - /// get information of a group - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task GetAPIGroup5Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetAPIGroup5WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateTokenReviewWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34352,34 +37258,48 @@ namespace k8s } /// - /// create a LocalSubjectAccessReview + /// create a TokenReview /// /// /// The operations group for this extension method. /// /// /// - /// - /// object name and auth scope, such as for teams and projects + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. /// /// /// If 'true', then the output is pretty printed. /// - public static V1LocalSubjectAccessReview CreateNamespacedLocalSubjectAccessReview(this IKubernetes operations, V1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string)) + public static V1beta1TokenReview CreateTokenReview1(this IKubernetes operations, V1beta1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedLocalSubjectAccessReviewAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateTokenReview1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// - /// create a LocalSubjectAccessReview + /// create a TokenReview /// /// /// The operations group for this extension method. /// /// /// - /// - /// object name and auth scope, such as for teams and projects + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. /// /// /// If 'true', then the output is pretty printed. @@ -34387,123 +37307,37 @@ namespace k8s /// /// The cancellation token. /// - public static async Task CreateNamespacedLocalSubjectAccessReviewAsync(this IKubernetes operations, V1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateTokenReview1Async(this IKubernetes operations, V1beta1TokenReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedLocalSubjectAccessReviewWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateTokenReview1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// create a SelfSubjectAccessReview + /// get information of a group /// /// /// The operations group for this extension method. /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - public static V1SelfSubjectAccessReview CreateSelfSubjectAccessReview(this IKubernetes operations, V1SelfSubjectAccessReview body, string pretty = default(string)) + public static V1APIGroup GetAPIGroup6(this IKubernetes operations) { - return operations.CreateSelfSubjectAccessReviewAsync(body, pretty).GetAwaiter().GetResult(); + return operations.GetAPIGroup6Async().GetAwaiter().GetResult(); } /// - /// create a SelfSubjectAccessReview + /// get information of a group /// /// /// The operations group for this extension method. /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// /// /// The cancellation token. /// - public static async Task CreateSelfSubjectAccessReviewAsync(this IKubernetes operations, V1SelfSubjectAccessReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup6Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateSelfSubjectAccessReviewWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// create a SelfSubjectRulesReview - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - public static V1SelfSubjectRulesReview CreateSelfSubjectRulesReview(this IKubernetes operations, V1SelfSubjectRulesReview body, string pretty = default(string)) - { - return operations.CreateSelfSubjectRulesReviewAsync(body, pretty).GetAwaiter().GetResult(); - } - - /// - /// create a SelfSubjectRulesReview - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The cancellation token. - /// - public static async Task CreateSelfSubjectRulesReviewAsync(this IKubernetes operations, V1SelfSubjectRulesReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateSelfSubjectRulesReviewWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// create a SubjectAccessReview - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - public static V1SubjectAccessReview CreateSubjectAccessReview(this IKubernetes operations, V1SubjectAccessReview body, string pretty = default(string)) - { - return operations.CreateSubjectAccessReviewAsync(body, pretty).GetAwaiter().GetResult(); - } - - /// - /// create a SubjectAccessReview - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// If 'true', then the output is pretty printed. - /// - /// - /// The cancellation token. - /// - public static async Task CreateSubjectAccessReviewAsync(this IKubernetes operations, V1SubjectAccessReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateSubjectAccessReviewWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup6WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34548,12 +37382,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1LocalSubjectAccessReview CreateNamespacedLocalSubjectAccessReview1(this IKubernetes operations, V1beta1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string)) + public static V1LocalSubjectAccessReview CreateNamespacedLocalSubjectAccessReview(this IKubernetes operations, V1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedLocalSubjectAccessReview1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedLocalSubjectAccessReviewAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -34567,15 +37411,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedLocalSubjectAccessReview1Async(this IKubernetes operations, V1beta1LocalSubjectAccessReview body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedLocalSubjectAccessReviewAsync(this IKubernetes operations, V1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedLocalSubjectAccessReview1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedLocalSubjectAccessReviewWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34589,12 +37443,22 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1SelfSubjectAccessReview CreateSelfSubjectAccessReview1(this IKubernetes operations, V1beta1SelfSubjectAccessReview body, string pretty = default(string)) + public static V1SelfSubjectAccessReview CreateSelfSubjectAccessReview(this IKubernetes operations, V1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateSelfSubjectAccessReview1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateSelfSubjectAccessReviewAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -34605,15 +37469,25 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateSelfSubjectAccessReview1Async(this IKubernetes operations, V1beta1SelfSubjectAccessReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateSelfSubjectAccessReviewAsync(this IKubernetes operations, V1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateSelfSubjectAccessReview1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateSelfSubjectAccessReviewWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34627,12 +37501,22 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1SelfSubjectRulesReview CreateSelfSubjectRulesReview1(this IKubernetes operations, V1beta1SelfSubjectRulesReview body, string pretty = default(string)) + public static V1SelfSubjectRulesReview CreateSelfSubjectRulesReview(this IKubernetes operations, V1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateSelfSubjectRulesReview1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateSelfSubjectRulesReviewAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -34643,15 +37527,25 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateSelfSubjectRulesReview1Async(this IKubernetes operations, V1beta1SelfSubjectRulesReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateSelfSubjectRulesReviewAsync(this IKubernetes operations, V1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateSelfSubjectRulesReview1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateSelfSubjectRulesReviewWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34665,12 +37559,22 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1SubjectAccessReview CreateSubjectAccessReview1(this IKubernetes operations, V1beta1SubjectAccessReview body, string pretty = default(string)) + public static V1SubjectAccessReview CreateSubjectAccessReview(this IKubernetes operations, V1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateSubjectAccessReview1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateSubjectAccessReviewAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -34681,43 +37585,25 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateSubjectAccessReview1Async(this IKubernetes operations, V1beta1SubjectAccessReview body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateSubjectAccessReviewAsync(this IKubernetes operations, V1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateSubjectAccessReview1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// get information of a group - /// - /// - /// The operations group for this extension method. - /// - public static V1APIGroup GetAPIGroup6(this IKubernetes operations) - { - return operations.GetAPIGroup6Async().GetAwaiter().GetResult(); - } - - /// - /// get information of a group - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task GetAPIGroup6Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetAPIGroup6WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateSubjectAccessReviewWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -34751,6 +37637,300 @@ namespace k8s } } + /// + /// create a LocalSubjectAccessReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// object name and auth scope, such as for teams and projects + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1beta1LocalSubjectAccessReview CreateNamespacedLocalSubjectAccessReview1(this IKubernetes operations, V1beta1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.CreateNamespacedLocalSubjectAccessReview1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// create a LocalSubjectAccessReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// object name and auth scope, such as for teams and projects + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task CreateNamespacedLocalSubjectAccessReview1Async(this IKubernetes operations, V1beta1LocalSubjectAccessReview body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateNamespacedLocalSubjectAccessReview1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// create a SelfSubjectAccessReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1beta1SelfSubjectAccessReview CreateSelfSubjectAccessReview1(this IKubernetes operations, V1beta1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.CreateSelfSubjectAccessReview1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// create a SelfSubjectAccessReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task CreateSelfSubjectAccessReview1Async(this IKubernetes operations, V1beta1SelfSubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateSelfSubjectAccessReview1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// create a SelfSubjectRulesReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1beta1SelfSubjectRulesReview CreateSelfSubjectRulesReview1(this IKubernetes operations, V1beta1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.CreateSelfSubjectRulesReview1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// create a SelfSubjectRulesReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task CreateSelfSubjectRulesReview1Async(this IKubernetes operations, V1beta1SelfSubjectRulesReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateSelfSubjectRulesReview1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// create a SubjectAccessReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1beta1SubjectAccessReview CreateSubjectAccessReview1(this IKubernetes operations, V1beta1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.CreateSubjectAccessReview1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// create a SubjectAccessReview + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task CreateSubjectAccessReview1Async(this IKubernetes operations, V1beta1SubjectAccessReview body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateSubjectAccessReview1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// get information of a group + /// + /// + /// The operations group for this extension method. + /// + public static V1APIGroup GetAPIGroup7(this IKubernetes operations) + { + return operations.GetAPIGroup7Async().GetAwaiter().GetResult(); + } + + /// + /// get information of a group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetAPIGroup7Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAPIGroup7WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// get available resources + /// + /// + /// The operations group for this extension method. + /// + public static V1APIResourceList GetAPIResources14(this IKubernetes operations) + { + return operations.GetAPIResources14Async().GetAwaiter().GetResult(); + } + + /// + /// get available resources + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetAPIResources14Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAPIResources14WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// list or watch objects of kind HorizontalPodAutoscaler /// @@ -34961,9 +38141,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -35007,12 +38184,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscalerList ListNamespacedHorizontalPodAutoscaler(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1HorizontalPodAutoscalerList ListNamespacedHorizontalPodAutoscaler(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedHorizontalPodAutoscalerAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedHorizontalPodAutoscalerAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -35049,9 +38229,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -35095,15 +38272,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35120,12 +38300,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler CreateNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler CreateNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedHorizontalPodAutoscalerAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedHorizontalPodAutoscalerAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -35139,15 +38328,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35187,9 +38385,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -35233,12 +38428,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedHorizontalPodAutoscaler(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedHorizontalPodAutoscaler(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedHorizontalPodAutoscalerAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedHorizontalPodAutoscalerAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -35275,9 +38473,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -35321,15 +38516,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35411,12 +38609,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedHorizontalPodAutoscalerAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedHorizontalPodAutoscalerAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -35433,15 +38637,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35453,14 +38663,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -35492,9 +38702,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedHorizontalPodAutoscaler(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedHorizontalPodAutoscalerAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedHorizontalPodAutoscalerAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -35503,14 +38713,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -35545,9 +38755,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35567,12 +38777,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedHorizontalPodAutoscalerAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedHorizontalPodAutoscalerAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -35589,15 +38805,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35663,12 +38885,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscalerStatus(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscalerStatus(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedHorizontalPodAutoscalerStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedHorizontalPodAutoscalerStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -35685,15 +38913,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedHorizontalPodAutoscalerStatusAsync(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedHorizontalPodAutoscalerStatusAsync(this IKubernetes operations, V1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35713,12 +38947,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedHorizontalPodAutoscalerStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedHorizontalPodAutoscalerStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -35735,15 +38975,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedHorizontalPodAutoscalerStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35755,9 +39001,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources14(this IKubernetes operations) + public static V1APIResourceList GetAPIResources15(this IKubernetes operations) { - return operations.GetAPIResources14Async().GetAwaiter().GetResult(); + return operations.GetAPIResources15Async().GetAwaiter().GetResult(); } /// @@ -35769,9 +39015,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources14Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources15Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources14WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources15WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -35987,9 +39233,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -36033,12 +39276,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscalerList ListNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V2beta1HorizontalPodAutoscalerList ListNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedHorizontalPodAutoscaler1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedHorizontalPodAutoscaler1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -36075,9 +39321,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -36121,15 +39364,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36146,12 +39392,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler CreateNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler CreateNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedHorizontalPodAutoscaler1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedHorizontalPodAutoscaler1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -36165,15 +39420,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36213,9 +39477,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -36259,12 +39520,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedHorizontalPodAutoscaler1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedHorizontalPodAutoscaler1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -36301,9 +39565,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -36347,15 +39608,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36437,12 +39701,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedHorizontalPodAutoscaler1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedHorizontalPodAutoscaler1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -36459,15 +39729,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36479,14 +39755,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -36518,9 +39794,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedHorizontalPodAutoscaler1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedHorizontalPodAutoscaler1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -36529,14 +39805,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -36571,9 +39847,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36593,12 +39869,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedHorizontalPodAutoscaler1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedHorizontalPodAutoscaler1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -36615,15 +39897,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36689,12 +39977,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscalerStatus1(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscalerStatus1(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedHorizontalPodAutoscalerStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedHorizontalPodAutoscalerStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -36711,15 +40005,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedHorizontalPodAutoscalerStatus1Async(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedHorizontalPodAutoscalerStatus1Async(this IKubernetes operations, V2beta1HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36739,12 +40039,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedHorizontalPodAutoscalerStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedHorizontalPodAutoscalerStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -36761,15 +40067,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedHorizontalPodAutoscalerStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -36781,9 +40093,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources15(this IKubernetes operations) + public static V1APIResourceList GetAPIResources16(this IKubernetes operations) { - return operations.GetAPIResources15Async().GetAwaiter().GetResult(); + return operations.GetAPIResources16Async().GetAwaiter().GetResult(); } /// @@ -36795,9 +40107,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources15Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources16Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources15WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources16WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37013,9 +40325,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -37059,12 +40368,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta2HorizontalPodAutoscalerList ListNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V2beta2HorizontalPodAutoscalerList ListNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedHorizontalPodAutoscaler2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedHorizontalPodAutoscaler2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -37101,9 +40413,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -37147,15 +40456,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37172,12 +40484,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta2HorizontalPodAutoscaler CreateNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string)) + public static V2beta2HorizontalPodAutoscaler CreateNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedHorizontalPodAutoscaler2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedHorizontalPodAutoscaler2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -37191,15 +40512,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37239,9 +40569,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -37285,12 +40612,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedHorizontalPodAutoscaler2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedHorizontalPodAutoscaler2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -37327,9 +40657,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -37373,15 +40700,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37463,12 +40793,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta2HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta2HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedHorizontalPodAutoscaler2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedHorizontalPodAutoscaler2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -37485,15 +40821,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37505,14 +40847,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -37544,9 +40886,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedHorizontalPodAutoscaler2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedHorizontalPodAutoscaler2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -37555,14 +40897,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the HorizontalPodAutoscaler /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -37597,9 +40939,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37619,12 +40961,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta2HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta2HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedHorizontalPodAutoscaler2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedHorizontalPodAutoscaler2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -37641,15 +40989,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedHorizontalPodAutoscaler2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedHorizontalPodAutoscaler2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37715,12 +41069,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta2HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscalerStatus2(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta2HorizontalPodAutoscaler ReplaceNamespacedHorizontalPodAutoscalerStatus2(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedHorizontalPodAutoscalerStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedHorizontalPodAutoscalerStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -37737,15 +41097,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedHorizontalPodAutoscalerStatus2Async(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedHorizontalPodAutoscalerStatus2Async(this IKubernetes operations, V2beta2HorizontalPodAutoscaler body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37765,12 +41131,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2beta2HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta2HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedHorizontalPodAutoscalerStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedHorizontalPodAutoscalerStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -37787,15 +41159,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedHorizontalPodAutoscalerStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37807,9 +41185,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup7(this IKubernetes operations) + public static V1APIGroup GetAPIGroup8(this IKubernetes operations) { - return operations.GetAPIGroup7Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup8Async().GetAwaiter().GetResult(); } /// @@ -37821,9 +41199,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup7Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup8Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup7WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup8WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -37835,9 +41213,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources16(this IKubernetes operations) + public static V1APIResourceList GetAPIResources17(this IKubernetes operations) { - return operations.GetAPIResources16Async().GetAwaiter().GetResult(); + return operations.GetAPIResources17Async().GetAwaiter().GetResult(); } /// @@ -37849,9 +41227,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources16Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources17Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources16WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources17WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38067,9 +41445,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -38113,12 +41488,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1JobList ListNamespacedJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1JobList ListNamespacedJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedJobAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedJobAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -38155,9 +41533,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -38201,15 +41576,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38226,12 +41604,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Job CreateNamespacedJob(this IKubernetes operations, V1Job body, string namespaceParameter, string pretty = default(string)) + public static V1Job CreateNamespacedJob(this IKubernetes operations, V1Job body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedJobAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedJobAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -38245,15 +41632,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedJobAsync(this IKubernetes operations, V1Job body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedJobAsync(this IKubernetes operations, V1Job body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedJobWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedJobWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38293,9 +41689,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -38339,12 +41732,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedJobAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedJobAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -38381,9 +41777,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -38427,15 +41820,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38517,12 +41913,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Job ReplaceNamespacedJob(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Job ReplaceNamespacedJob(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedJobAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedJobAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -38539,15 +41941,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedJobAsync(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedJobAsync(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedJobWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedJobWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38559,14 +41967,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Job /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -38598,9 +42006,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedJob(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedJob(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedJobAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedJobAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -38609,14 +42017,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Job /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -38651,9 +42059,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedJobAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedJobAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedJobWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedJobWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38673,12 +42081,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Job PatchNamespacedJob(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Job PatchNamespacedJob(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedJobAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedJobAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -38695,15 +42109,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedJobAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedJobAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedJobWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedJobWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38769,12 +42189,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Job ReplaceNamespacedJobStatus(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Job ReplaceNamespacedJobStatus(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedJobStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedJobStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -38791,15 +42217,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedJobStatusAsync(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedJobStatusAsync(this IKubernetes operations, V1Job body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38819,12 +42251,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Job PatchNamespacedJobStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Job PatchNamespacedJobStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedJobStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedJobStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -38841,15 +42279,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedJobStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedJobStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -38861,9 +42305,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources17(this IKubernetes operations) + public static V1APIResourceList GetAPIResources18(this IKubernetes operations) { - return operations.GetAPIResources17Async().GetAwaiter().GetResult(); + return operations.GetAPIResources18Async().GetAwaiter().GetResult(); } /// @@ -38875,9 +42319,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources17Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources18Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources17WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources18WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39093,9 +42537,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -39139,12 +42580,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJobList ListNamespacedCronJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1CronJobList ListNamespacedCronJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedCronJobAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedCronJobAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -39181,9 +42625,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -39227,15 +42668,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedCronJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedCronJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedCronJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedCronJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39252,12 +42696,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob CreateNamespacedCronJob(this IKubernetes operations, V1beta1CronJob body, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob CreateNamespacedCronJob(this IKubernetes operations, V1beta1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedCronJobAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedCronJobAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -39271,15 +42724,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedCronJobAsync(this IKubernetes operations, V1beta1CronJob body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedCronJobAsync(this IKubernetes operations, V1beta1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedCronJobWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedCronJobWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39319,9 +42781,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -39365,12 +42824,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedCronJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedCronJob(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedCronJobAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedCronJobAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -39407,9 +42869,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -39453,15 +42912,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedCronJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedCronJobAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedCronJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedCronJobWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39543,12 +43005,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob ReplaceNamespacedCronJob(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob ReplaceNamespacedCronJob(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedCronJobAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedCronJobAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -39565,15 +43033,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedCronJobAsync(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedCronJobAsync(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedCronJobWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedCronJobWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39585,14 +43059,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -39624,9 +43098,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedCronJob(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedCronJob(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedCronJobAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedCronJobAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -39635,14 +43109,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -39677,9 +43151,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedCronJobAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedCronJobAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedCronJobWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedCronJobWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39699,12 +43173,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob PatchNamespacedCronJob(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob PatchNamespacedCronJob(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedCronJobAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedCronJobAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -39721,15 +43201,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJobAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedCronJobAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedCronJobWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedCronJobWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39795,12 +43281,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob ReplaceNamespacedCronJobStatus(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob ReplaceNamespacedCronJobStatus(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedCronJobStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedCronJobStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -39817,15 +43309,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedCronJobStatusAsync(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedCronJobStatusAsync(this IKubernetes operations, V1beta1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedCronJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedCronJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39845,12 +43343,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob PatchNamespacedCronJobStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob PatchNamespacedCronJobStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedCronJobStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedCronJobStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -39867,15 +43371,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJobStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedCronJobStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedCronJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedCronJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -39887,9 +43397,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources18(this IKubernetes operations) + public static V1APIResourceList GetAPIResources19(this IKubernetes operations) { - return operations.GetAPIResources18Async().GetAwaiter().GetResult(); + return operations.GetAPIResources19Async().GetAwaiter().GetResult(); } /// @@ -39901,9 +43411,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources18Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources19Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources18WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources19WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40119,9 +43629,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -40165,12 +43672,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJobList ListNamespacedCronJob1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V2alpha1CronJobList ListNamespacedCronJob1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedCronJob1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedCronJob1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -40207,9 +43717,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -40253,15 +43760,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedCronJob1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedCronJob1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedCronJob1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedCronJob1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40278,12 +43788,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob CreateNamespacedCronJob1(this IKubernetes operations, V2alpha1CronJob body, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob CreateNamespacedCronJob1(this IKubernetes operations, V2alpha1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedCronJob1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedCronJob1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -40297,15 +43816,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedCronJob1Async(this IKubernetes operations, V2alpha1CronJob body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedCronJob1Async(this IKubernetes operations, V2alpha1CronJob body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedCronJob1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedCronJob1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40345,9 +43873,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -40391,12 +43916,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedCronJob1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedCronJob1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedCronJob1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedCronJob1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -40433,9 +43961,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -40479,15 +44004,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedCronJob1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedCronJob1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedCronJob1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedCronJob1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40569,12 +44097,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob ReplaceNamespacedCronJob1(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob ReplaceNamespacedCronJob1(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedCronJob1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedCronJob1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -40591,15 +44125,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedCronJob1Async(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedCronJob1Async(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedCronJob1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedCronJob1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40611,14 +44151,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -40650,9 +44190,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedCronJob1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedCronJob1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedCronJob1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedCronJob1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -40661,14 +44201,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CronJob /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -40703,9 +44243,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedCronJob1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedCronJob1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedCronJob1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedCronJob1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40725,12 +44265,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob PatchNamespacedCronJob1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob PatchNamespacedCronJob1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedCronJob1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedCronJob1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -40747,15 +44293,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJob1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedCronJob1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedCronJob1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedCronJob1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40821,12 +44373,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob ReplaceNamespacedCronJobStatus1(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob ReplaceNamespacedCronJobStatus1(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedCronJobStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedCronJobStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -40843,15 +44401,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedCronJobStatus1Async(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedCronJobStatus1Async(this IKubernetes operations, V2alpha1CronJob body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedCronJobStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedCronJobStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40871,12 +44435,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob PatchNamespacedCronJobStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob PatchNamespacedCronJobStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedCronJobStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedCronJobStatus1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -40893,15 +44463,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJobStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedCronJobStatus1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedCronJobStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedCronJobStatus1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40913,9 +44489,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup8(this IKubernetes operations) + public static V1APIGroup GetAPIGroup9(this IKubernetes operations) { - return operations.GetAPIGroup8Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup9Async().GetAwaiter().GetResult(); } /// @@ -40927,9 +44503,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup8Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup9Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup8WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup9WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40941,9 +44517,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources19(this IKubernetes operations) + public static V1APIResourceList GetAPIResources20(this IKubernetes operations) { - return operations.GetAPIResources19Async().GetAwaiter().GetResult(); + return operations.GetAPIResources20Async().GetAwaiter().GetResult(); } /// @@ -40955,9 +44531,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources19Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources20Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources19WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources20WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -40994,9 +44570,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -41040,12 +44613,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequestList ListCertificateSigningRequest(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1CertificateSigningRequestList ListCertificateSigningRequest(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListCertificateSigningRequestAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListCertificateSigningRequestAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -41079,9 +44655,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -41125,15 +44698,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListCertificateSigningRequestAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListCertificateSigningRequestAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListCertificateSigningRequestWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListCertificateSigningRequestWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41147,12 +44723,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest CreateCertificateSigningRequest(this IKubernetes operations, V1beta1CertificateSigningRequest body, string pretty = default(string)) + public static V1beta1CertificateSigningRequest CreateCertificateSigningRequest(this IKubernetes operations, V1beta1CertificateSigningRequest body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateCertificateSigningRequestAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateCertificateSigningRequestAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -41163,15 +44748,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateCertificateSigningRequestAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateCertificateSigningRequestAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateCertificateSigningRequestWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateCertificateSigningRequestWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41208,9 +44802,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -41254,12 +44845,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionCertificateSigningRequest(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionCertificateSigningRequest(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionCertificateSigningRequestAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionCertificateSigningRequestAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -41293,9 +44887,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -41339,15 +44930,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionCertificateSigningRequestAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionCertificateSigningRequestAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionCertificateSigningRequestWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionCertificateSigningRequestWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41420,12 +45014,18 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest ReplaceCertificateSigningRequest(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string pretty = default(string)) + public static V1beta1CertificateSigningRequest ReplaceCertificateSigningRequest(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceCertificateSigningRequestAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceCertificateSigningRequestAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -41439,15 +45039,21 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceCertificateSigningRequestAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceCertificateSigningRequestAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceCertificateSigningRequestWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceCertificateSigningRequestWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41459,11 +45065,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CertificateSigningRequest /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -41495,9 +45101,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCertificateSigningRequest(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteCertificateSigningRequest(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteCertificateSigningRequestAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteCertificateSigningRequestAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -41506,11 +45112,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the CertificateSigningRequest /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -41545,9 +45151,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteCertificateSigningRequestAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCertificateSigningRequestAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCertificateSigningRequestWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCertificateSigningRequestWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41564,12 +45170,18 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest PatchCertificateSigningRequest(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1CertificateSigningRequest PatchCertificateSigningRequest(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchCertificateSigningRequestAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchCertificateSigningRequestAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -41583,15 +45195,21 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchCertificateSigningRequestAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchCertificateSigningRequestAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchCertificateSigningRequestWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchCertificateSigningRequestWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41608,12 +45226,18 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest ReplaceCertificateSigningRequestApproval(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string pretty = default(string)) + public static V1beta1CertificateSigningRequest ReplaceCertificateSigningRequestApproval(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceCertificateSigningRequestApprovalAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceCertificateSigningRequestApprovalAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -41627,15 +45251,21 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceCertificateSigningRequestApprovalAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceCertificateSigningRequestApprovalAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceCertificateSigningRequestApprovalWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceCertificateSigningRequestApprovalWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41692,12 +45322,18 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest ReplaceCertificateSigningRequestStatus(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string pretty = default(string)) + public static V1beta1CertificateSigningRequest ReplaceCertificateSigningRequestStatus(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceCertificateSigningRequestStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceCertificateSigningRequestStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -41711,15 +45347,21 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceCertificateSigningRequestStatusAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceCertificateSigningRequestStatusAsync(this IKubernetes operations, V1beta1CertificateSigningRequest body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceCertificateSigningRequestStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceCertificateSigningRequestStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41736,12 +45378,18 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest PatchCertificateSigningRequestStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1CertificateSigningRequest PatchCertificateSigningRequestStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchCertificateSigningRequestStatusAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchCertificateSigningRequestStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -41755,15 +45403,21 @@ namespace k8s /// /// name of the CertificateSigningRequest /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchCertificateSigningRequestStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchCertificateSigningRequestStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchCertificateSigningRequestStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchCertificateSigningRequestStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41775,9 +45429,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup9(this IKubernetes operations) + public static V1APIGroup GetAPIGroup10(this IKubernetes operations) { - return operations.GetAPIGroup9Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup10Async().GetAwaiter().GetResult(); } /// @@ -41789,9 +45443,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup9Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup10Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup9WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup10WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -41803,9 +45457,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources20(this IKubernetes operations) + public static V1APIResourceList GetAPIResources21(this IKubernetes operations) { - return operations.GetAPIResources20Async().GetAwaiter().GetResult(); + return operations.GetAPIResources21Async().GetAwaiter().GetResult(); } /// @@ -41817,9 +45471,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources20Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources21Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources20WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources21WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42035,9 +45689,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -42081,12 +45732,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1LeaseList ListNamespacedLease(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1LeaseList ListNamespacedLease(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedLeaseAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedLeaseAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -42123,9 +45777,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -42169,15 +45820,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedLeaseAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedLeaseAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedLeaseWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedLeaseWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42194,12 +45848,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Lease CreateNamespacedLease(this IKubernetes operations, V1beta1Lease body, string namespaceParameter, string pretty = default(string)) + public static V1beta1Lease CreateNamespacedLease(this IKubernetes operations, V1beta1Lease body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedLeaseAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedLeaseAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -42213,15 +45876,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedLeaseAsync(this IKubernetes operations, V1beta1Lease body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedLeaseAsync(this IKubernetes operations, V1beta1Lease body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedLeaseWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedLeaseWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42261,9 +45933,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -42307,12 +45976,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedLease(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedLease(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedLeaseAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedLeaseAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -42349,9 +46021,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -42395,15 +46064,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedLeaseAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedLeaseAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedLeaseWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedLeaseWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42485,12 +46157,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Lease ReplaceNamespacedLease(this IKubernetes operations, V1beta1Lease body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Lease ReplaceNamespacedLease(this IKubernetes operations, V1beta1Lease body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedLeaseAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedLeaseAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -42507,15 +46185,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedLeaseAsync(this IKubernetes operations, V1beta1Lease body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedLeaseAsync(this IKubernetes operations, V1beta1Lease body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedLeaseWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedLeaseWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42527,14 +46211,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Lease /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -42566,9 +46250,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedLease(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedLease(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedLeaseAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedLeaseAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -42577,14 +46261,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Lease /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -42619,9 +46303,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedLeaseAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedLeaseAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedLeaseWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedLeaseWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42641,12 +46325,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Lease PatchNamespacedLease(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Lease PatchNamespacedLease(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedLeaseAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedLeaseAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -42663,15 +46353,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedLeaseAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedLeaseAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedLeaseWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedLeaseWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42683,9 +46379,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup10(this IKubernetes operations) + public static V1APIGroup GetAPIGroup11(this IKubernetes operations) { - return operations.GetAPIGroup10Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup11Async().GetAwaiter().GetResult(); } /// @@ -42697,9 +46393,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup10Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup11Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup10WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup11WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42711,9 +46407,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources21(this IKubernetes operations) + public static V1APIResourceList GetAPIResources22(this IKubernetes operations) { - return operations.GetAPIResources21Async().GetAwaiter().GetResult(); + return operations.GetAPIResources22Async().GetAwaiter().GetResult(); } /// @@ -42725,9 +46421,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources21Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources22Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources21WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources22WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -42943,9 +46639,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -42989,12 +46682,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1EventList ListNamespacedEvent1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1EventList ListNamespacedEvent1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedEvent1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedEvent1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -43031,9 +46727,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -43077,15 +46770,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedEvent1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedEvent1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedEvent1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedEvent1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43102,12 +46798,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Event CreateNamespacedEvent1(this IKubernetes operations, V1beta1Event body, string namespaceParameter, string pretty = default(string)) + public static V1beta1Event CreateNamespacedEvent1(this IKubernetes operations, V1beta1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedEvent1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedEvent1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -43121,15 +46826,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedEvent1Async(this IKubernetes operations, V1beta1Event body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedEvent1Async(this IKubernetes operations, V1beta1Event body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedEvent1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedEvent1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43169,9 +46883,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -43215,12 +46926,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedEvent1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedEvent1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedEvent1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedEvent1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -43257,9 +46971,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -43303,15 +47014,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedEvent1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedEvent1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedEvent1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedEvent1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43393,12 +47107,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Event ReplaceNamespacedEvent1(this IKubernetes operations, V1beta1Event body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Event ReplaceNamespacedEvent1(this IKubernetes operations, V1beta1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedEvent1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedEvent1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -43415,15 +47135,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedEvent1Async(this IKubernetes operations, V1beta1Event body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedEvent1Async(this IKubernetes operations, V1beta1Event body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedEvent1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedEvent1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43435,14 +47161,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -43474,9 +47200,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedEvent1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedEvent1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedEvent1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedEvent1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -43485,14 +47211,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Event /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -43527,9 +47253,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedEvent1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedEvent1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedEvent1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedEvent1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43549,12 +47275,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Event PatchNamespacedEvent1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Event PatchNamespacedEvent1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedEvent1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedEvent1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -43571,15 +47303,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedEvent1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedEvent1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedEvent1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedEvent1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43591,9 +47329,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup11(this IKubernetes operations) + public static V1APIGroup GetAPIGroup12(this IKubernetes operations) { - return operations.GetAPIGroup11Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup12Async().GetAwaiter().GetResult(); } /// @@ -43605,9 +47343,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup11Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup12Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup11WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup12WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -43619,9 +47357,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources22(this IKubernetes operations) + public static V1APIResourceList GetAPIResources23(this IKubernetes operations) { - return operations.GetAPIResources22Async().GetAwaiter().GetResult(); + return operations.GetAPIResources23Async().GetAwaiter().GetResult(); } /// @@ -43633,9 +47371,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources22Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources23Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources22WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources23WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44203,9 +47941,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -44249,12 +47984,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSetList ListNamespacedDaemonSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1DaemonSetList ListNamespacedDaemonSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDaemonSet2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDaemonSet2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -44291,9 +48029,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -44337,15 +48072,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDaemonSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDaemonSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDaemonSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDaemonSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44362,12 +48100,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet CreateNamespacedDaemonSet2(this IKubernetes operations, V1beta1DaemonSet body, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet CreateNamespacedDaemonSet2(this IKubernetes operations, V1beta1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDaemonSet2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDaemonSet2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -44381,15 +48128,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDaemonSet2Async(this IKubernetes operations, V1beta1DaemonSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDaemonSet2Async(this IKubernetes operations, V1beta1DaemonSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDaemonSet2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDaemonSet2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44429,9 +48185,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -44475,12 +48228,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDaemonSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDaemonSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDaemonSet2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDaemonSet2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -44517,9 +48273,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -44563,15 +48316,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDaemonSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDaemonSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDaemonSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDaemonSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44653,12 +48409,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet ReplaceNamespacedDaemonSet2(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet ReplaceNamespacedDaemonSet2(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDaemonSet2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDaemonSet2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -44675,15 +48437,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDaemonSet2Async(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDaemonSet2Async(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDaemonSet2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDaemonSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44695,14 +48463,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -44734,9 +48502,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDaemonSet2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDaemonSet2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDaemonSet2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDaemonSet2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -44745,14 +48513,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the DaemonSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -44787,9 +48555,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDaemonSet2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDaemonSet2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDaemonSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDaemonSet2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44809,12 +48577,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet PatchNamespacedDaemonSet2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet PatchNamespacedDaemonSet2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDaemonSet2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDaemonSet2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -44831,15 +48605,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSet2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDaemonSet2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDaemonSet2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDaemonSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44905,12 +48685,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet ReplaceNamespacedDaemonSetStatus2(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet ReplaceNamespacedDaemonSetStatus2(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDaemonSetStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDaemonSetStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -44927,15 +48713,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDaemonSetStatus2Async(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDaemonSetStatus2Async(this IKubernetes operations, V1beta1DaemonSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDaemonSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDaemonSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -44955,12 +48747,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet PatchNamespacedDaemonSetStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet PatchNamespacedDaemonSetStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDaemonSetStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDaemonSetStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -44977,15 +48775,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDaemonSetStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDaemonSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDaemonSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45025,9 +48829,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -45071,12 +48872,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1DeploymentList ListNamespacedDeployment3(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static Extensionsv1beta1DeploymentList ListNamespacedDeployment3(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedDeployment3Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedDeployment3Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -45113,9 +48917,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -45159,15 +48960,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedDeployment3Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedDeployment3Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedDeployment3WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedDeployment3WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45184,12 +48988,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment CreateNamespacedDeployment3(this IKubernetes operations, Extensionsv1beta1Deployment body, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment CreateNamespacedDeployment3(this IKubernetes operations, Extensionsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDeployment3Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDeployment3Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -45203,15 +49016,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDeployment3Async(this IKubernetes operations, Extensionsv1beta1Deployment body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDeployment3Async(this IKubernetes operations, Extensionsv1beta1Deployment body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDeployment3WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDeployment3WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45251,9 +49073,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -45297,12 +49116,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedDeployment3(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedDeployment3(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedDeployment3Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedDeployment3Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -45339,9 +49161,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -45385,15 +49204,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedDeployment3Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedDeployment3Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedDeployment3WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedDeployment3WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45475,12 +49297,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment ReplaceNamespacedDeployment3(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment ReplaceNamespacedDeployment3(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeployment3Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeployment3Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -45497,15 +49325,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeployment3Async(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeployment3Async(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeployment3WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeployment3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45517,14 +49351,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -45556,9 +49390,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedDeployment3(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedDeployment3(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedDeployment3Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedDeployment3Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -45567,14 +49401,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Deployment /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -45609,9 +49443,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedDeployment3Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedDeployment3Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedDeployment3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedDeployment3WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45631,12 +49465,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment PatchNamespacedDeployment3(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment PatchNamespacedDeployment3(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeployment3Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeployment3Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -45653,15 +49493,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeployment3Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeployment3Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeployment3WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeployment3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45681,12 +49527,22 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1DeploymentStatus CreateNamespacedDeploymentRollback1(this IKubernetes operations, Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Status CreateNamespacedDeploymentRollback1(this IKubernetes operations, Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedDeploymentRollback1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedDeploymentRollback1Async(body, name, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -45703,15 +49559,25 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If IncludeUninitialized is specified, the object may be returned without + /// completing initialization. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedDeploymentRollback1Async(this IKubernetes operations, Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedDeploymentRollback1Async(this IKubernetes operations, Extensionsv1beta1DeploymentRollback body, string name, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedDeploymentRollback1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedDeploymentRollback1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45777,12 +49643,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale ReplaceNamespacedDeploymentScale3(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale ReplaceNamespacedDeploymentScale3(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentScale3Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentScale3Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -45799,15 +49671,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentScale3Async(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentScale3Async(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentScale3WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentScale3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45827,12 +49705,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale PatchNamespacedDeploymentScale3(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale PatchNamespacedDeploymentScale3(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentScale3Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentScale3Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -45849,15 +49733,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScale3Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentScale3Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentScale3WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentScale3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45923,12 +49813,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment ReplaceNamespacedDeploymentStatus3(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment ReplaceNamespacedDeploymentStatus3(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedDeploymentStatus3Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedDeploymentStatus3Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -45945,15 +49841,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedDeploymentStatus3Async(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedDeploymentStatus3Async(this IKubernetes operations, Extensionsv1beta1Deployment body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedDeploymentStatus3WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedDeploymentStatus3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -45973,12 +49875,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment PatchNamespacedDeploymentStatus3(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment PatchNamespacedDeploymentStatus3(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedDeploymentStatus3Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedDeploymentStatus3Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -45995,15 +49903,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatus3Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedDeploymentStatus3Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedDeploymentStatus3WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedDeploymentStatus3WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46043,9 +49957,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46089,12 +50000,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1IngressList ListNamespacedIngress(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1IngressList ListNamespacedIngress(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedIngressAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedIngressAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -46131,9 +50045,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46177,15 +50088,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedIngressAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedIngressAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedIngressWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedIngressWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46202,12 +50116,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress CreateNamespacedIngress(this IKubernetes operations, V1beta1Ingress body, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress CreateNamespacedIngress(this IKubernetes operations, V1beta1Ingress body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedIngressAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedIngressAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -46221,15 +50144,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedIngressAsync(this IKubernetes operations, V1beta1Ingress body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedIngressAsync(this IKubernetes operations, V1beta1Ingress body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedIngressWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedIngressWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46269,9 +50201,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46315,12 +50244,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedIngress(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedIngress(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedIngressAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedIngressAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -46357,9 +50289,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46403,15 +50332,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedIngressAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedIngressAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedIngressWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedIngressWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46493,12 +50425,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress ReplaceNamespacedIngress(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress ReplaceNamespacedIngress(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedIngressAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedIngressAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -46515,15 +50453,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedIngressAsync(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedIngressAsync(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedIngressWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedIngressWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46535,14 +50479,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Ingress /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -46574,9 +50518,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedIngress(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedIngress(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedIngressAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedIngressAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -46585,14 +50529,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Ingress /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -46627,9 +50571,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedIngressAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedIngressAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedIngressWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedIngressWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46649,12 +50593,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress PatchNamespacedIngress(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress PatchNamespacedIngress(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedIngressAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedIngressAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -46671,15 +50621,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedIngressAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedIngressAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedIngressWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedIngressWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46745,12 +50701,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress ReplaceNamespacedIngressStatus(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress ReplaceNamespacedIngressStatus(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedIngressStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedIngressStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -46767,15 +50729,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedIngressStatusAsync(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedIngressStatusAsync(this IKubernetes operations, V1beta1Ingress body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedIngressStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedIngressStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46795,12 +50763,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress PatchNamespacedIngressStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress PatchNamespacedIngressStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedIngressStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedIngressStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -46817,15 +50791,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedIngressStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedIngressStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedIngressStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedIngressStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -46865,9 +50845,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46911,12 +50888,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1NetworkPolicyList ListNamespacedNetworkPolicy(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1NetworkPolicyList ListNamespacedNetworkPolicy(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedNetworkPolicyAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedNetworkPolicyAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -46953,9 +50933,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -46999,15 +50976,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedNetworkPolicyAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedNetworkPolicyAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedNetworkPolicyWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedNetworkPolicyWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47024,12 +51004,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1NetworkPolicy CreateNamespacedNetworkPolicy(this IKubernetes operations, V1beta1NetworkPolicy body, string namespaceParameter, string pretty = default(string)) + public static V1beta1NetworkPolicy CreateNamespacedNetworkPolicy(this IKubernetes operations, V1beta1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedNetworkPolicyAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedNetworkPolicyAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -47043,15 +51032,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedNetworkPolicyAsync(this IKubernetes operations, V1beta1NetworkPolicy body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedNetworkPolicyAsync(this IKubernetes operations, V1beta1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedNetworkPolicyWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedNetworkPolicyWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47091,9 +51089,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47137,12 +51132,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedNetworkPolicy(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedNetworkPolicy(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedNetworkPolicyAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedNetworkPolicyAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -47179,9 +51177,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47225,15 +51220,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedNetworkPolicyAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedNetworkPolicyAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedNetworkPolicyWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedNetworkPolicyWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47315,12 +51313,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1NetworkPolicy ReplaceNamespacedNetworkPolicy(this IKubernetes operations, V1beta1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1NetworkPolicy ReplaceNamespacedNetworkPolicy(this IKubernetes operations, V1beta1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedNetworkPolicyAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedNetworkPolicyAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -47337,15 +51341,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedNetworkPolicyAsync(this IKubernetes operations, V1beta1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedNetworkPolicyAsync(this IKubernetes operations, V1beta1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedNetworkPolicyWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedNetworkPolicyWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47357,14 +51367,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -47396,9 +51406,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedNetworkPolicy(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedNetworkPolicy(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedNetworkPolicyAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedNetworkPolicyAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -47407,14 +51417,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -47449,9 +51459,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedNetworkPolicyAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedNetworkPolicyAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedNetworkPolicyWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedNetworkPolicyWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47471,12 +51481,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1NetworkPolicy PatchNamespacedNetworkPolicy(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1NetworkPolicy PatchNamespacedNetworkPolicy(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedNetworkPolicyAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedNetworkPolicyAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -47493,15 +51509,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedNetworkPolicyAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedNetworkPolicyAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedNetworkPolicyWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedNetworkPolicyWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47541,9 +51563,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47587,12 +51606,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSetList ListNamespacedReplicaSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1ReplicaSetList ListNamespacedReplicaSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedReplicaSet2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedReplicaSet2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -47629,9 +51651,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47675,15 +51694,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedReplicaSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedReplicaSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedReplicaSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedReplicaSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47700,12 +51722,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet CreateNamespacedReplicaSet2(this IKubernetes operations, V1beta1ReplicaSet body, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet CreateNamespacedReplicaSet2(this IKubernetes operations, V1beta1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedReplicaSet2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedReplicaSet2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -47719,15 +51750,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedReplicaSet2Async(this IKubernetes operations, V1beta1ReplicaSet body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedReplicaSet2Async(this IKubernetes operations, V1beta1ReplicaSet body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedReplicaSet2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedReplicaSet2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47767,9 +51807,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47813,12 +51850,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedReplicaSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedReplicaSet2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedReplicaSet2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedReplicaSet2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -47855,9 +51895,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -47901,15 +51938,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedReplicaSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedReplicaSet2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedReplicaSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedReplicaSet2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -47991,12 +52031,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet ReplaceNamespacedReplicaSet2(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet ReplaceNamespacedReplicaSet2(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSet2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSet2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48013,15 +52059,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSet2Async(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSet2Async(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSet2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48033,14 +52085,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -48072,9 +52124,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedReplicaSet2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedReplicaSet2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedReplicaSet2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedReplicaSet2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -48083,14 +52135,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ReplicaSet /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -48125,9 +52177,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedReplicaSet2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedReplicaSet2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedReplicaSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedReplicaSet2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48147,12 +52199,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet PatchNamespacedReplicaSet2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet PatchNamespacedReplicaSet2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSet2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSet2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48169,15 +52227,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSet2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSet2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSet2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSet2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48243,12 +52307,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale ReplaceNamespacedReplicaSetScale2(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale ReplaceNamespacedReplicaSetScale2(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetScale2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48265,15 +52335,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetScale2Async(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetScale2Async(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48293,12 +52369,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale PatchNamespacedReplicaSetScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale PatchNamespacedReplicaSetScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetScale2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48315,15 +52397,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetScale2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetScale2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetScale2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48389,12 +52477,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet ReplaceNamespacedReplicaSetStatus2(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet ReplaceNamespacedReplicaSetStatus2(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicaSetStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicaSetStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48411,15 +52505,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicaSetStatus2Async(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicaSetStatus2Async(this IKubernetes operations, V1beta1ReplicaSet body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicaSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicaSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48439,12 +52539,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet PatchNamespacedReplicaSetStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet PatchNamespacedReplicaSetStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicaSetStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicaSetStatus2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48461,15 +52567,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicaSetStatus2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicaSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicaSetStatus2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48535,12 +52647,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale ReplaceNamespacedReplicationControllerDummyScale(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale ReplaceNamespacedReplicationControllerDummyScale(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedReplicationControllerDummyScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedReplicationControllerDummyScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48557,15 +52675,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedReplicationControllerDummyScaleAsync(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedReplicationControllerDummyScaleAsync(this IKubernetes operations, Extensionsv1beta1Scale body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48585,12 +52709,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale PatchNamespacedReplicationControllerDummyScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale PatchNamespacedReplicationControllerDummyScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedReplicationControllerDummyScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedReplicationControllerDummyScaleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -48607,15 +52737,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerDummyScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedReplicationControllerDummyScaleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48828,9 +52964,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -48874,12 +53007,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1PodSecurityPolicyList ListPodSecurityPolicy(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static Extensionsv1beta1PodSecurityPolicyList ListPodSecurityPolicy(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListPodSecurityPolicyAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListPodSecurityPolicyAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -48913,9 +53049,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -48959,15 +53092,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListPodSecurityPolicyAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListPodSecurityPolicyAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPodSecurityPolicyWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPodSecurityPolicyWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -48981,12 +53117,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1PodSecurityPolicy CreatePodSecurityPolicy(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string pretty = default(string)) + public static Extensionsv1beta1PodSecurityPolicy CreatePodSecurityPolicy(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreatePodSecurityPolicyAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreatePodSecurityPolicyAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -48997,15 +53142,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreatePodSecurityPolicyAsync(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreatePodSecurityPolicyAsync(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreatePodSecurityPolicyWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreatePodSecurityPolicyWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49042,9 +53196,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -49088,12 +53239,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionPodSecurityPolicy(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionPodSecurityPolicy(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionPodSecurityPolicyAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionPodSecurityPolicyAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -49127,9 +53281,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -49173,15 +53324,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionPodSecurityPolicyAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionPodSecurityPolicyAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionPodSecurityPolicyWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionPodSecurityPolicyWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49254,12 +53408,18 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1PodSecurityPolicy ReplacePodSecurityPolicy(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string name, string pretty = default(string)) + public static Extensionsv1beta1PodSecurityPolicy ReplacePodSecurityPolicy(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplacePodSecurityPolicyAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplacePodSecurityPolicyAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -49273,15 +53433,21 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplacePodSecurityPolicyAsync(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplacePodSecurityPolicyAsync(this IKubernetes operations, Extensionsv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplacePodSecurityPolicyWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplacePodSecurityPolicyWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49293,11 +53459,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -49329,9 +53495,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeletePodSecurityPolicy(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeletePodSecurityPolicy(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeletePodSecurityPolicyAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeletePodSecurityPolicyAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -49340,11 +53506,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -49379,9 +53545,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeletePodSecurityPolicyAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeletePodSecurityPolicyAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeletePodSecurityPolicyWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeletePodSecurityPolicyWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49398,12 +53564,18 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1PodSecurityPolicy PatchPodSecurityPolicy(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static Extensionsv1beta1PodSecurityPolicy PatchPodSecurityPolicy(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchPodSecurityPolicyAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchPodSecurityPolicyAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -49417,15 +53589,21 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchPodSecurityPolicyAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPodSecurityPolicyAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchPodSecurityPolicyWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchPodSecurityPolicyWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49613,9 +53791,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup12(this IKubernetes operations) + public static V1APIGroup GetAPIGroup13(this IKubernetes operations) { - return operations.GetAPIGroup12Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup13Async().GetAwaiter().GetResult(); } /// @@ -49627,9 +53805,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup12Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup13Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup12WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup13WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49641,9 +53819,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources23(this IKubernetes operations) + public static V1APIResourceList GetAPIResources24(this IKubernetes operations) { - return operations.GetAPIResources23Async().GetAwaiter().GetResult(); + return operations.GetAPIResources24Async().GetAwaiter().GetResult(); } /// @@ -49655,9 +53833,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources23Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources24Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources23WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources24WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49697,9 +53875,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -49743,12 +53918,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1NetworkPolicyList ListNamespacedNetworkPolicy1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1NetworkPolicyList ListNamespacedNetworkPolicy1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedNetworkPolicy1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedNetworkPolicy1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -49785,9 +53963,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -49831,15 +54006,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedNetworkPolicy1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedNetworkPolicy1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedNetworkPolicy1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedNetworkPolicy1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49856,12 +54034,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1NetworkPolicy CreateNamespacedNetworkPolicy1(this IKubernetes operations, V1NetworkPolicy body, string namespaceParameter, string pretty = default(string)) + public static V1NetworkPolicy CreateNamespacedNetworkPolicy1(this IKubernetes operations, V1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedNetworkPolicy1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedNetworkPolicy1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -49875,15 +54062,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedNetworkPolicy1Async(this IKubernetes operations, V1NetworkPolicy body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedNetworkPolicy1Async(this IKubernetes operations, V1NetworkPolicy body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedNetworkPolicy1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedNetworkPolicy1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -49923,9 +54119,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -49969,12 +54162,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedNetworkPolicy1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedNetworkPolicy1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedNetworkPolicy1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedNetworkPolicy1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -50011,9 +54207,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -50057,15 +54250,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedNetworkPolicy1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedNetworkPolicy1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedNetworkPolicy1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedNetworkPolicy1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50147,12 +54343,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1NetworkPolicy ReplaceNamespacedNetworkPolicy1(this IKubernetes operations, V1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string)) + public static V1NetworkPolicy ReplaceNamespacedNetworkPolicy1(this IKubernetes operations, V1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedNetworkPolicy1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedNetworkPolicy1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -50169,15 +54371,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedNetworkPolicy1Async(this IKubernetes operations, V1NetworkPolicy body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedNetworkPolicy1Async(this IKubernetes operations, V1NetworkPolicy body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedNetworkPolicy1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedNetworkPolicy1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50189,14 +54397,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -50228,9 +54436,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedNetworkPolicy1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedNetworkPolicy1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedNetworkPolicy1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedNetworkPolicy1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -50239,14 +54447,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the NetworkPolicy /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -50281,9 +54489,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedNetworkPolicy1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedNetworkPolicy1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedNetworkPolicy1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedNetworkPolicy1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50303,12 +54511,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1NetworkPolicy PatchNamespacedNetworkPolicy1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1NetworkPolicy PatchNamespacedNetworkPolicy1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedNetworkPolicy1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedNetworkPolicy1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -50325,15 +54539,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedNetworkPolicy1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedNetworkPolicy1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50521,9 +54741,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup13(this IKubernetes operations) + public static V1APIGroup GetAPIGroup14(this IKubernetes operations) { - return operations.GetAPIGroup13Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup14Async().GetAwaiter().GetResult(); } /// @@ -50535,9 +54755,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup13Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup14Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup13WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup14WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50549,9 +54769,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources24(this IKubernetes operations) + public static V1APIResourceList GetAPIResources25(this IKubernetes operations) { - return operations.GetAPIResources24Async().GetAwaiter().GetResult(); + return operations.GetAPIResources25Async().GetAwaiter().GetResult(); } /// @@ -50563,9 +54783,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources24Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources25Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources24WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources25WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50605,9 +54825,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -50651,12 +54868,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudgetList ListNamespacedPodDisruptionBudget(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1PodDisruptionBudgetList ListNamespacedPodDisruptionBudget(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedPodDisruptionBudgetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedPodDisruptionBudgetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -50693,9 +54913,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -50739,15 +54956,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedPodDisruptionBudgetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedPodDisruptionBudgetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50764,12 +54984,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget CreateNamespacedPodDisruptionBudget(this IKubernetes operations, V1beta1PodDisruptionBudget body, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget CreateNamespacedPodDisruptionBudget(this IKubernetes operations, V1beta1PodDisruptionBudget body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPodDisruptionBudgetAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPodDisruptionBudgetAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -50783,15 +55012,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1beta1PodDisruptionBudget body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1beta1PodDisruptionBudget body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -50831,9 +55069,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -50877,12 +55112,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedPodDisruptionBudget(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedPodDisruptionBudget(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedPodDisruptionBudgetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedPodDisruptionBudgetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -50919,9 +55157,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -50965,15 +55200,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedPodDisruptionBudgetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedPodDisruptionBudgetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51055,12 +55293,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget ReplaceNamespacedPodDisruptionBudget(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget ReplaceNamespacedPodDisruptionBudget(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPodDisruptionBudgetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPodDisruptionBudgetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -51077,15 +55321,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51097,14 +55347,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodDisruptionBudget /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -51136,9 +55386,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedPodDisruptionBudget(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedPodDisruptionBudget(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedPodDisruptionBudgetAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedPodDisruptionBudgetAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -51147,14 +55397,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodDisruptionBudget /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -51189,9 +55439,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedPodDisruptionBudgetWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51211,12 +55461,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudget(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudget(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPodDisruptionBudgetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPodDisruptionBudgetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -51233,15 +55489,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51307,12 +55569,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget ReplaceNamespacedPodDisruptionBudgetStatus(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget ReplaceNamespacedPodDisruptionBudgetStatus(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPodDisruptionBudgetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPodDisruptionBudgetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -51329,15 +55597,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPodDisruptionBudgetStatusAsync(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPodDisruptionBudgetStatusAsync(this IKubernetes operations, V1beta1PodDisruptionBudget body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51357,12 +55631,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudgetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudgetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPodDisruptionBudgetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPodDisruptionBudgetStatusAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -51379,15 +55659,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPodDisruptionBudgetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPodDisruptionBudgetStatusAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51600,9 +55886,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -51646,12 +55929,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Policyv1beta1PodSecurityPolicyList ListPodSecurityPolicy1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static Policyv1beta1PodSecurityPolicyList ListPodSecurityPolicy1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListPodSecurityPolicy1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListPodSecurityPolicy1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -51685,9 +55971,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -51731,15 +56014,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListPodSecurityPolicy1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListPodSecurityPolicy1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPodSecurityPolicy1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPodSecurityPolicy1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51753,12 +56039,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static Policyv1beta1PodSecurityPolicy CreatePodSecurityPolicy1(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string pretty = default(string)) + public static Policyv1beta1PodSecurityPolicy CreatePodSecurityPolicy1(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreatePodSecurityPolicy1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreatePodSecurityPolicy1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -51769,15 +56064,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreatePodSecurityPolicy1Async(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreatePodSecurityPolicy1Async(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreatePodSecurityPolicy1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreatePodSecurityPolicy1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -51814,9 +56118,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -51860,12 +56161,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionPodSecurityPolicy1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionPodSecurityPolicy1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionPodSecurityPolicy1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionPodSecurityPolicy1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -51899,9 +56203,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -51945,15 +56246,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionPodSecurityPolicy1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionPodSecurityPolicy1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionPodSecurityPolicy1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionPodSecurityPolicy1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52026,12 +56330,18 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Policyv1beta1PodSecurityPolicy ReplacePodSecurityPolicy1(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string name, string pretty = default(string)) + public static Policyv1beta1PodSecurityPolicy ReplacePodSecurityPolicy1(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplacePodSecurityPolicy1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplacePodSecurityPolicy1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -52045,15 +56355,21 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplacePodSecurityPolicy1Async(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplacePodSecurityPolicy1Async(this IKubernetes operations, Policyv1beta1PodSecurityPolicy body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplacePodSecurityPolicy1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplacePodSecurityPolicy1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52065,11 +56381,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -52101,9 +56417,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeletePodSecurityPolicy1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeletePodSecurityPolicy1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeletePodSecurityPolicy1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeletePodSecurityPolicy1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -52112,11 +56428,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodSecurityPolicy /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -52151,9 +56467,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeletePodSecurityPolicy1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeletePodSecurityPolicy1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeletePodSecurityPolicy1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeletePodSecurityPolicy1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52170,12 +56486,18 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static Policyv1beta1PodSecurityPolicy PatchPodSecurityPolicy1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static Policyv1beta1PodSecurityPolicy PatchPodSecurityPolicy1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchPodSecurityPolicy1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchPodSecurityPolicy1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -52189,15 +56511,21 @@ namespace k8s /// /// name of the PodSecurityPolicy /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchPodSecurityPolicy1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPodSecurityPolicy1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchPodSecurityPolicy1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchPodSecurityPolicy1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52209,9 +56537,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup14(this IKubernetes operations) + public static V1APIGroup GetAPIGroup15(this IKubernetes operations) { - return operations.GetAPIGroup14Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup15Async().GetAwaiter().GetResult(); } /// @@ -52223,9 +56551,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup14Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup15Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup14WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup15WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52237,9 +56565,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources25(this IKubernetes operations) + public static V1APIResourceList GetAPIResources26(this IKubernetes operations) { - return operations.GetAPIResources25Async().GetAwaiter().GetResult(); + return operations.GetAPIResources26Async().GetAwaiter().GetResult(); } /// @@ -52251,9 +56579,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources25Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources26Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources25WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources26WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52290,9 +56618,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -52336,12 +56661,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRoleBindingList ListClusterRoleBinding(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ClusterRoleBindingList ListClusterRoleBinding(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListClusterRoleBindingAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListClusterRoleBindingAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -52375,9 +56703,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -52421,15 +56746,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListClusterRoleBindingAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListClusterRoleBindingAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListClusterRoleBindingWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListClusterRoleBindingWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52443,12 +56771,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRoleBinding CreateClusterRoleBinding(this IKubernetes operations, V1ClusterRoleBinding body, string pretty = default(string)) + public static V1ClusterRoleBinding CreateClusterRoleBinding(this IKubernetes operations, V1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateClusterRoleBindingAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateClusterRoleBindingAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -52459,15 +56796,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateClusterRoleBindingAsync(this IKubernetes operations, V1ClusterRoleBinding body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateClusterRoleBindingAsync(this IKubernetes operations, V1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateClusterRoleBindingWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateClusterRoleBindingWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52504,9 +56850,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -52550,12 +56893,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionClusterRoleBinding(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionClusterRoleBinding(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionClusterRoleBindingAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionClusterRoleBindingAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -52589,9 +56935,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -52635,15 +56978,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionClusterRoleBindingAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionClusterRoleBindingAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionClusterRoleBindingWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionClusterRoleBindingWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52700,12 +57046,18 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRoleBinding ReplaceClusterRoleBinding(this IKubernetes operations, V1ClusterRoleBinding body, string name, string pretty = default(string)) + public static V1ClusterRoleBinding ReplaceClusterRoleBinding(this IKubernetes operations, V1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceClusterRoleBindingAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceClusterRoleBindingAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -52719,15 +57071,21 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceClusterRoleBindingAsync(this IKubernetes operations, V1ClusterRoleBinding body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceClusterRoleBindingAsync(this IKubernetes operations, V1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceClusterRoleBindingWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceClusterRoleBindingWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52739,11 +57097,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -52775,9 +57133,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteClusterRoleBinding(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteClusterRoleBinding(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteClusterRoleBindingAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteClusterRoleBindingAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -52786,11 +57144,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -52825,9 +57183,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteClusterRoleBindingAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteClusterRoleBindingAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteClusterRoleBindingWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteClusterRoleBindingWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52844,12 +57202,18 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRoleBinding PatchClusterRoleBinding(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1ClusterRoleBinding PatchClusterRoleBinding(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchClusterRoleBindingAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchClusterRoleBindingAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -52863,15 +57227,21 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchClusterRoleBindingAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleBindingAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchClusterRoleBindingWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchClusterRoleBindingWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -52908,9 +57278,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -52954,12 +57321,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRoleList ListClusterRole(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1ClusterRoleList ListClusterRole(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListClusterRoleAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListClusterRoleAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -52993,9 +57363,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53039,15 +57406,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListClusterRoleAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListClusterRoleAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListClusterRoleWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListClusterRoleWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53061,12 +57431,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRole CreateClusterRole(this IKubernetes operations, V1ClusterRole body, string pretty = default(string)) + public static V1ClusterRole CreateClusterRole(this IKubernetes operations, V1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateClusterRoleAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateClusterRoleAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -53077,15 +57456,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateClusterRoleAsync(this IKubernetes operations, V1ClusterRole body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateClusterRoleAsync(this IKubernetes operations, V1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateClusterRoleWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateClusterRoleWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53122,9 +57510,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53168,12 +57553,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionClusterRole(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionClusterRole(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionClusterRoleAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionClusterRoleAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -53207,9 +57595,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53253,15 +57638,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionClusterRoleAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionClusterRoleAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionClusterRoleWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionClusterRoleWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53318,12 +57706,18 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRole ReplaceClusterRole(this IKubernetes operations, V1ClusterRole body, string name, string pretty = default(string)) + public static V1ClusterRole ReplaceClusterRole(this IKubernetes operations, V1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceClusterRoleAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceClusterRoleAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -53337,15 +57731,21 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceClusterRoleAsync(this IKubernetes operations, V1ClusterRole body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceClusterRoleAsync(this IKubernetes operations, V1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceClusterRoleWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceClusterRoleWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53357,11 +57757,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -53393,9 +57793,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteClusterRole(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteClusterRole(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteClusterRoleAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteClusterRoleAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -53404,11 +57804,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -53443,9 +57843,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteClusterRoleAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteClusterRoleAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteClusterRoleWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteClusterRoleWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53462,12 +57862,18 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRole PatchClusterRole(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1ClusterRole PatchClusterRole(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchClusterRoleAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchClusterRoleAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -53481,15 +57887,21 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchClusterRoleAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchClusterRoleWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchClusterRoleWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53529,9 +57941,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53575,12 +57984,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1RoleBindingList ListNamespacedRoleBinding(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1RoleBindingList ListNamespacedRoleBinding(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedRoleBindingAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedRoleBindingAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -53617,9 +58029,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53663,15 +58072,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedRoleBindingAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedRoleBindingAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedRoleBindingWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedRoleBindingWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53688,12 +58100,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1RoleBinding CreateNamespacedRoleBinding(this IKubernetes operations, V1RoleBinding body, string namespaceParameter, string pretty = default(string)) + public static V1RoleBinding CreateNamespacedRoleBinding(this IKubernetes operations, V1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedRoleBindingAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedRoleBindingAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -53707,15 +58128,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedRoleBindingAsync(this IKubernetes operations, V1RoleBinding body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedRoleBindingAsync(this IKubernetes operations, V1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedRoleBindingWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedRoleBindingWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53755,9 +58185,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53801,12 +58228,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedRoleBinding(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedRoleBinding(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedRoleBindingAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedRoleBindingAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -53843,9 +58273,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -53889,15 +58316,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedRoleBindingAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedRoleBindingAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedRoleBindingWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedRoleBindingWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -53963,12 +58393,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1RoleBinding ReplaceNamespacedRoleBinding(this IKubernetes operations, V1RoleBinding body, string name, string namespaceParameter, string pretty = default(string)) + public static V1RoleBinding ReplaceNamespacedRoleBinding(this IKubernetes operations, V1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedRoleBindingAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedRoleBindingAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -53985,15 +58421,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedRoleBindingAsync(this IKubernetes operations, V1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedRoleBindingAsync(this IKubernetes operations, V1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedRoleBindingWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedRoleBindingWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54005,14 +58447,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -54044,9 +58486,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedRoleBinding(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedRoleBinding(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedRoleBindingAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedRoleBindingAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -54055,14 +58497,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -54097,9 +58539,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedRoleBindingAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedRoleBindingAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedRoleBindingWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedRoleBindingWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54119,12 +58561,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1RoleBinding PatchNamespacedRoleBinding(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1RoleBinding PatchNamespacedRoleBinding(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedRoleBindingAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedRoleBindingAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -54141,15 +58589,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleBindingAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedRoleBindingAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedRoleBindingWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedRoleBindingWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54189,9 +58643,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -54235,12 +58686,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1RoleList ListNamespacedRole(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1RoleList ListNamespacedRole(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedRoleAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedRoleAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -54277,9 +58731,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -54323,15 +58774,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedRoleAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedRoleAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedRoleWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedRoleWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54348,12 +58802,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Role CreateNamespacedRole(this IKubernetes operations, V1Role body, string namespaceParameter, string pretty = default(string)) + public static V1Role CreateNamespacedRole(this IKubernetes operations, V1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedRoleAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedRoleAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -54367,15 +58830,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedRoleAsync(this IKubernetes operations, V1Role body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedRoleAsync(this IKubernetes operations, V1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedRoleWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedRoleWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54415,9 +58887,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -54461,12 +58930,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedRole(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedRole(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedRoleAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedRoleAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -54503,9 +58975,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -54549,15 +59018,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedRoleAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedRoleAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedRoleWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedRoleWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54623,12 +59095,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Role ReplaceNamespacedRole(this IKubernetes operations, V1Role body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Role ReplaceNamespacedRole(this IKubernetes operations, V1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedRoleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedRoleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -54645,15 +59123,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedRoleAsync(this IKubernetes operations, V1Role body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedRoleAsync(this IKubernetes operations, V1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedRoleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedRoleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54665,14 +59149,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -54704,9 +59188,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedRole(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedRole(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedRoleAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedRoleAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -54715,14 +59199,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -54757,9 +59241,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedRoleAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedRoleAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedRoleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedRoleWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -54779,12 +59263,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Role PatchNamespacedRole(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Role PatchNamespacedRole(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedRoleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedRoleAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -54801,15 +59291,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedRoleAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedRoleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedRoleWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55173,9 +59669,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources26(this IKubernetes operations) + public static V1APIResourceList GetAPIResources27(this IKubernetes operations) { - return operations.GetAPIResources26Async().GetAwaiter().GetResult(); + return operations.GetAPIResources27Async().GetAwaiter().GetResult(); } /// @@ -55187,9 +59683,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources26Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources27Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources26WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources27WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55226,9 +59722,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55272,12 +59765,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRoleBindingList ListClusterRoleBinding1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1ClusterRoleBindingList ListClusterRoleBinding1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListClusterRoleBinding1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListClusterRoleBinding1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -55311,9 +59807,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55357,15 +59850,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListClusterRoleBinding1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListClusterRoleBinding1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListClusterRoleBinding1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListClusterRoleBinding1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55379,12 +59875,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRoleBinding CreateClusterRoleBinding1(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string pretty = default(string)) + public static V1alpha1ClusterRoleBinding CreateClusterRoleBinding1(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateClusterRoleBinding1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateClusterRoleBinding1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -55395,15 +59900,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateClusterRoleBinding1Async(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateClusterRoleBinding1Async(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateClusterRoleBinding1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateClusterRoleBinding1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55440,9 +59954,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55486,12 +59997,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionClusterRoleBinding1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionClusterRoleBinding1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionClusterRoleBinding1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionClusterRoleBinding1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -55525,9 +60039,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55571,15 +60082,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionClusterRoleBinding1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionClusterRoleBinding1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionClusterRoleBinding1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionClusterRoleBinding1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55636,12 +60150,18 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRoleBinding ReplaceClusterRoleBinding1(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string name, string pretty = default(string)) + public static V1alpha1ClusterRoleBinding ReplaceClusterRoleBinding1(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceClusterRoleBinding1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceClusterRoleBinding1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -55655,15 +60175,21 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceClusterRoleBinding1Async(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceClusterRoleBinding1Async(this IKubernetes operations, V1alpha1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceClusterRoleBinding1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceClusterRoleBinding1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55675,11 +60201,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -55711,9 +60237,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteClusterRoleBinding1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteClusterRoleBinding1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteClusterRoleBinding1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteClusterRoleBinding1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -55722,11 +60248,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -55761,9 +60287,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteClusterRoleBinding1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteClusterRoleBinding1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteClusterRoleBinding1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteClusterRoleBinding1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55780,12 +60306,18 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRoleBinding PatchClusterRoleBinding1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1alpha1ClusterRoleBinding PatchClusterRoleBinding1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchClusterRoleBinding1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchClusterRoleBinding1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -55799,15 +60331,21 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchClusterRoleBinding1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleBinding1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchClusterRoleBinding1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchClusterRoleBinding1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55844,9 +60382,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55890,12 +60425,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRoleList ListClusterRole1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1ClusterRoleList ListClusterRole1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListClusterRole1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListClusterRole1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -55929,9 +60467,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -55975,15 +60510,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListClusterRole1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListClusterRole1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListClusterRole1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListClusterRole1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -55997,12 +60535,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRole CreateClusterRole1(this IKubernetes operations, V1alpha1ClusterRole body, string pretty = default(string)) + public static V1alpha1ClusterRole CreateClusterRole1(this IKubernetes operations, V1alpha1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateClusterRole1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateClusterRole1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -56013,15 +60560,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateClusterRole1Async(this IKubernetes operations, V1alpha1ClusterRole body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateClusterRole1Async(this IKubernetes operations, V1alpha1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateClusterRole1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateClusterRole1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56058,9 +60614,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -56104,12 +60657,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionClusterRole1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionClusterRole1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionClusterRole1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionClusterRole1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -56143,9 +60699,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -56189,15 +60742,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionClusterRole1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionClusterRole1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionClusterRole1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionClusterRole1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56254,12 +60810,18 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRole ReplaceClusterRole1(this IKubernetes operations, V1alpha1ClusterRole body, string name, string pretty = default(string)) + public static V1alpha1ClusterRole ReplaceClusterRole1(this IKubernetes operations, V1alpha1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceClusterRole1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceClusterRole1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -56273,15 +60835,21 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceClusterRole1Async(this IKubernetes operations, V1alpha1ClusterRole body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceClusterRole1Async(this IKubernetes operations, V1alpha1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceClusterRole1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceClusterRole1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56293,11 +60861,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -56329,9 +60897,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteClusterRole1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteClusterRole1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteClusterRole1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteClusterRole1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -56340,11 +60908,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -56379,9 +60947,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteClusterRole1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteClusterRole1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteClusterRole1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteClusterRole1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56398,12 +60966,18 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRole PatchClusterRole1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1alpha1ClusterRole PatchClusterRole1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchClusterRole1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchClusterRole1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -56417,15 +60991,21 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchClusterRole1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRole1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchClusterRole1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchClusterRole1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56465,9 +61045,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -56511,12 +61088,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1RoleBindingList ListNamespacedRoleBinding1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1RoleBindingList ListNamespacedRoleBinding1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedRoleBinding1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedRoleBinding1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -56553,9 +61133,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -56599,15 +61176,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedRoleBinding1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedRoleBinding1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedRoleBinding1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedRoleBinding1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56624,12 +61204,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1RoleBinding CreateNamespacedRoleBinding1(this IKubernetes operations, V1alpha1RoleBinding body, string namespaceParameter, string pretty = default(string)) + public static V1alpha1RoleBinding CreateNamespacedRoleBinding1(this IKubernetes operations, V1alpha1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedRoleBinding1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedRoleBinding1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -56643,15 +61232,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedRoleBinding1Async(this IKubernetes operations, V1alpha1RoleBinding body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedRoleBinding1Async(this IKubernetes operations, V1alpha1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedRoleBinding1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedRoleBinding1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56691,9 +61289,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -56737,12 +61332,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedRoleBinding1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedRoleBinding1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedRoleBinding1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedRoleBinding1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -56779,9 +61377,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -56825,15 +61420,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedRoleBinding1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedRoleBinding1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedRoleBinding1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedRoleBinding1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56899,12 +61497,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1RoleBinding ReplaceNamespacedRoleBinding1(this IKubernetes operations, V1alpha1RoleBinding body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1RoleBinding ReplaceNamespacedRoleBinding1(this IKubernetes operations, V1alpha1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedRoleBinding1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedRoleBinding1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -56921,15 +61525,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedRoleBinding1Async(this IKubernetes operations, V1alpha1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedRoleBinding1Async(this IKubernetes operations, V1alpha1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedRoleBinding1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedRoleBinding1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -56941,14 +61551,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -56980,9 +61590,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedRoleBinding1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedRoleBinding1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedRoleBinding1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedRoleBinding1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -56991,14 +61601,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -57033,9 +61643,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedRoleBinding1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedRoleBinding1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedRoleBinding1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedRoleBinding1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57055,12 +61665,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1RoleBinding PatchNamespacedRoleBinding1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1RoleBinding PatchNamespacedRoleBinding1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedRoleBinding1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedRoleBinding1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -57077,15 +61693,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleBinding1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedRoleBinding1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedRoleBinding1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedRoleBinding1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57125,9 +61747,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -57171,12 +61790,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1RoleList ListNamespacedRole1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1RoleList ListNamespacedRole1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedRole1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedRole1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -57213,9 +61835,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -57259,15 +61878,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedRole1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedRole1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedRole1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedRole1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57284,12 +61906,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1Role CreateNamespacedRole1(this IKubernetes operations, V1alpha1Role body, string namespaceParameter, string pretty = default(string)) + public static V1alpha1Role CreateNamespacedRole1(this IKubernetes operations, V1alpha1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedRole1Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedRole1Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -57303,15 +61934,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedRole1Async(this IKubernetes operations, V1alpha1Role body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedRole1Async(this IKubernetes operations, V1alpha1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedRole1WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedRole1WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57351,9 +61991,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -57397,12 +62034,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedRole1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedRole1(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedRole1Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedRole1Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -57439,9 +62079,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -57485,15 +62122,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedRole1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedRole1Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedRole1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedRole1WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57559,12 +62199,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1Role ReplaceNamespacedRole1(this IKubernetes operations, V1alpha1Role body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1Role ReplaceNamespacedRole1(this IKubernetes operations, V1alpha1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedRole1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedRole1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -57581,15 +62227,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedRole1Async(this IKubernetes operations, V1alpha1Role body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedRole1Async(this IKubernetes operations, V1alpha1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedRole1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedRole1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57601,14 +62253,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -57640,9 +62292,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedRole1(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedRole1(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedRole1Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedRole1Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -57651,14 +62303,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -57693,9 +62345,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedRole1Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedRole1Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedRole1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedRole1WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -57715,12 +62367,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1Role PatchNamespacedRole1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1Role PatchNamespacedRole1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedRole1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedRole1Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -57737,15 +62395,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedRole1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedRole1Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedRole1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedRole1WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58109,9 +62773,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources27(this IKubernetes operations) + public static V1APIResourceList GetAPIResources28(this IKubernetes operations) { - return operations.GetAPIResources27Async().GetAwaiter().GetResult(); + return operations.GetAPIResources28Async().GetAwaiter().GetResult(); } /// @@ -58123,9 +62787,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources27Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources28Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources27WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources28WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58162,9 +62826,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58208,12 +62869,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRoleBindingList ListClusterRoleBinding2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1ClusterRoleBindingList ListClusterRoleBinding2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListClusterRoleBinding2Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListClusterRoleBinding2Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -58247,9 +62911,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58293,15 +62954,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListClusterRoleBinding2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListClusterRoleBinding2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListClusterRoleBinding2WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListClusterRoleBinding2WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58315,12 +62979,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRoleBinding CreateClusterRoleBinding2(this IKubernetes operations, V1beta1ClusterRoleBinding body, string pretty = default(string)) + public static V1beta1ClusterRoleBinding CreateClusterRoleBinding2(this IKubernetes operations, V1beta1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateClusterRoleBinding2Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateClusterRoleBinding2Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -58331,15 +63004,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateClusterRoleBinding2Async(this IKubernetes operations, V1beta1ClusterRoleBinding body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateClusterRoleBinding2Async(this IKubernetes operations, V1beta1ClusterRoleBinding body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateClusterRoleBinding2WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateClusterRoleBinding2WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58376,9 +63058,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58422,12 +63101,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionClusterRoleBinding2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionClusterRoleBinding2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionClusterRoleBinding2Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionClusterRoleBinding2Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -58461,9 +63143,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58507,15 +63186,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionClusterRoleBinding2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionClusterRoleBinding2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionClusterRoleBinding2WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionClusterRoleBinding2WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58572,12 +63254,18 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRoleBinding ReplaceClusterRoleBinding2(this IKubernetes operations, V1beta1ClusterRoleBinding body, string name, string pretty = default(string)) + public static V1beta1ClusterRoleBinding ReplaceClusterRoleBinding2(this IKubernetes operations, V1beta1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceClusterRoleBinding2Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceClusterRoleBinding2Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -58591,15 +63279,21 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceClusterRoleBinding2Async(this IKubernetes operations, V1beta1ClusterRoleBinding body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceClusterRoleBinding2Async(this IKubernetes operations, V1beta1ClusterRoleBinding body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceClusterRoleBinding2WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceClusterRoleBinding2WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58611,11 +63305,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -58647,9 +63341,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteClusterRoleBinding2(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteClusterRoleBinding2(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteClusterRoleBinding2Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteClusterRoleBinding2Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -58658,11 +63352,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRoleBinding /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -58697,9 +63391,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteClusterRoleBinding2Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteClusterRoleBinding2Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteClusterRoleBinding2WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteClusterRoleBinding2WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58716,12 +63410,18 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRoleBinding PatchClusterRoleBinding2(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1ClusterRoleBinding PatchClusterRoleBinding2(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchClusterRoleBinding2Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchClusterRoleBinding2Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -58735,15 +63435,21 @@ namespace k8s /// /// name of the ClusterRoleBinding /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchClusterRoleBinding2Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleBinding2Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchClusterRoleBinding2WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchClusterRoleBinding2WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58780,9 +63486,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58826,12 +63529,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRoleList ListClusterRole2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1ClusterRoleList ListClusterRole2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListClusterRole2Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListClusterRole2Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -58865,9 +63571,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -58911,15 +63614,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListClusterRole2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListClusterRole2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListClusterRole2WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListClusterRole2WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58933,12 +63639,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRole CreateClusterRole2(this IKubernetes operations, V1beta1ClusterRole body, string pretty = default(string)) + public static V1beta1ClusterRole CreateClusterRole2(this IKubernetes operations, V1beta1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateClusterRole2Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateClusterRole2Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -58949,15 +63664,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateClusterRole2Async(this IKubernetes operations, V1beta1ClusterRole body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateClusterRole2Async(this IKubernetes operations, V1beta1ClusterRole body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateClusterRole2WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateClusterRole2WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -58994,9 +63718,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -59040,12 +63761,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionClusterRole2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionClusterRole2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionClusterRole2Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionClusterRole2Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -59079,9 +63803,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -59125,15 +63846,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionClusterRole2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionClusterRole2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionClusterRole2WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionClusterRole2WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59190,12 +63914,18 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRole ReplaceClusterRole2(this IKubernetes operations, V1beta1ClusterRole body, string name, string pretty = default(string)) + public static V1beta1ClusterRole ReplaceClusterRole2(this IKubernetes operations, V1beta1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceClusterRole2Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceClusterRole2Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -59209,15 +63939,21 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceClusterRole2Async(this IKubernetes operations, V1beta1ClusterRole body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceClusterRole2Async(this IKubernetes operations, V1beta1ClusterRole body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceClusterRole2WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceClusterRole2WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59229,11 +63965,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -59265,9 +64001,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteClusterRole2(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteClusterRole2(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteClusterRole2Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteClusterRole2Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -59276,11 +64012,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the ClusterRole /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -59315,9 +64051,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteClusterRole2Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteClusterRole2Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteClusterRole2WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteClusterRole2WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59334,12 +64070,18 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRole PatchClusterRole2(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1ClusterRole PatchClusterRole2(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchClusterRole2Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchClusterRole2Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -59353,15 +64095,21 @@ namespace k8s /// /// name of the ClusterRole /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchClusterRole2Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRole2Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchClusterRole2WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchClusterRole2WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59401,9 +64149,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -59447,12 +64192,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1RoleBindingList ListNamespacedRoleBinding2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1RoleBindingList ListNamespacedRoleBinding2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedRoleBinding2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedRoleBinding2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -59489,9 +64237,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -59535,15 +64280,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedRoleBinding2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedRoleBinding2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedRoleBinding2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedRoleBinding2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59560,12 +64308,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1RoleBinding CreateNamespacedRoleBinding2(this IKubernetes operations, V1beta1RoleBinding body, string namespaceParameter, string pretty = default(string)) + public static V1beta1RoleBinding CreateNamespacedRoleBinding2(this IKubernetes operations, V1beta1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedRoleBinding2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedRoleBinding2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -59579,15 +64336,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedRoleBinding2Async(this IKubernetes operations, V1beta1RoleBinding body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedRoleBinding2Async(this IKubernetes operations, V1beta1RoleBinding body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedRoleBinding2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedRoleBinding2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59627,9 +64393,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -59673,12 +64436,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedRoleBinding2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedRoleBinding2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedRoleBinding2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedRoleBinding2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -59715,9 +64481,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -59761,15 +64524,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedRoleBinding2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedRoleBinding2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedRoleBinding2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedRoleBinding2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59835,12 +64601,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1RoleBinding ReplaceNamespacedRoleBinding2(this IKubernetes operations, V1beta1RoleBinding body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1RoleBinding ReplaceNamespacedRoleBinding2(this IKubernetes operations, V1beta1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedRoleBinding2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedRoleBinding2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -59857,15 +64629,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedRoleBinding2Async(this IKubernetes operations, V1beta1RoleBinding body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedRoleBinding2Async(this IKubernetes operations, V1beta1RoleBinding body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedRoleBinding2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedRoleBinding2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59877,14 +64655,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -59916,9 +64694,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedRoleBinding2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedRoleBinding2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedRoleBinding2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedRoleBinding2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -59927,14 +64705,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the RoleBinding /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -59969,9 +64747,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedRoleBinding2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedRoleBinding2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedRoleBinding2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedRoleBinding2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -59991,12 +64769,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1RoleBinding PatchNamespacedRoleBinding2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1RoleBinding PatchNamespacedRoleBinding2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedRoleBinding2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedRoleBinding2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -60013,15 +64797,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleBinding2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedRoleBinding2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedRoleBinding2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedRoleBinding2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -60061,9 +64851,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -60107,12 +64894,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1RoleList ListNamespacedRole2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1RoleList ListNamespacedRole2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedRole2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedRole2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -60149,9 +64939,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -60195,15 +64982,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedRole2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedRole2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedRole2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedRole2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -60220,12 +65010,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Role CreateNamespacedRole2(this IKubernetes operations, V1beta1Role body, string namespaceParameter, string pretty = default(string)) + public static V1beta1Role CreateNamespacedRole2(this IKubernetes operations, V1beta1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedRole2Async(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedRole2Async(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -60239,15 +65038,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedRole2Async(this IKubernetes operations, V1beta1Role body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedRole2Async(this IKubernetes operations, V1beta1Role body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedRole2WithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedRole2WithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -60287,9 +65095,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -60333,12 +65138,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedRole2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedRole2(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedRole2Async(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedRole2Async(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -60375,9 +65183,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -60421,15 +65226,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedRole2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedRole2Async(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedRole2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedRole2WithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -60495,12 +65303,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Role ReplaceNamespacedRole2(this IKubernetes operations, V1beta1Role body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Role ReplaceNamespacedRole2(this IKubernetes operations, V1beta1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedRole2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedRole2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -60517,15 +65331,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedRole2Async(this IKubernetes operations, V1beta1Role body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedRole2Async(this IKubernetes operations, V1beta1Role body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedRole2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedRole2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -60537,14 +65357,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -60576,9 +65396,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedRole2(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedRole2(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedRole2Async(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedRole2Async(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -60587,14 +65407,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the Role /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -60629,9 +65449,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedRole2Async(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedRole2Async(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedRole2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedRole2WithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -60651,12 +65471,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Role PatchNamespacedRole2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Role PatchNamespacedRole2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedRole2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedRole2Async(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -60673,15 +65499,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedRole2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedRole2Async(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedRole2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedRole2WithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61045,9 +65877,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup15(this IKubernetes operations) + public static V1APIGroup GetAPIGroup16(this IKubernetes operations) { - return operations.GetAPIGroup15Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup16Async().GetAwaiter().GetResult(); } /// @@ -61059,9 +65891,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup15Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup16Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup15WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup16WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61073,9 +65905,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources28(this IKubernetes operations) + public static V1APIResourceList GetAPIResources29(this IKubernetes operations) { - return operations.GetAPIResources28Async().GetAwaiter().GetResult(); + return operations.GetAPIResources29Async().GetAwaiter().GetResult(); } /// @@ -61087,9 +65919,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources28Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources29Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources28WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources29WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61126,9 +65958,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -61172,12 +66001,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PriorityClassList ListPriorityClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1PriorityClassList ListPriorityClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListPriorityClassAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListPriorityClassAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -61211,9 +66043,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -61257,15 +66086,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListPriorityClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListPriorityClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPriorityClassWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPriorityClassWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61279,12 +66111,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PriorityClass CreatePriorityClass(this IKubernetes operations, V1alpha1PriorityClass body, string pretty = default(string)) + public static V1alpha1PriorityClass CreatePriorityClass(this IKubernetes operations, V1alpha1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreatePriorityClassAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreatePriorityClassAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -61295,15 +66136,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreatePriorityClassAsync(this IKubernetes operations, V1alpha1PriorityClass body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreatePriorityClassAsync(this IKubernetes operations, V1alpha1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreatePriorityClassWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreatePriorityClassWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61340,9 +66190,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -61386,12 +66233,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionPriorityClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionPriorityClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionPriorityClassAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionPriorityClassAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -61425,9 +66275,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -61471,15 +66318,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionPriorityClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionPriorityClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionPriorityClassWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionPriorityClassWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61552,12 +66402,18 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PriorityClass ReplacePriorityClass(this IKubernetes operations, V1alpha1PriorityClass body, string name, string pretty = default(string)) + public static V1alpha1PriorityClass ReplacePriorityClass(this IKubernetes operations, V1alpha1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplacePriorityClassAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplacePriorityClassAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -61571,15 +66427,21 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplacePriorityClassAsync(this IKubernetes operations, V1alpha1PriorityClass body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplacePriorityClassAsync(this IKubernetes operations, V1alpha1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplacePriorityClassWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplacePriorityClassWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61591,11 +66453,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -61627,9 +66489,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeletePriorityClass(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeletePriorityClass(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeletePriorityClassAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeletePriorityClassAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -61638,11 +66500,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -61677,9 +66539,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeletePriorityClassAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeletePriorityClassAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeletePriorityClassWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeletePriorityClassWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61696,12 +66558,18 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PriorityClass PatchPriorityClass(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1alpha1PriorityClass PatchPriorityClass(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchPriorityClassAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchPriorityClassAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -61715,15 +66583,21 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchPriorityClassAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPriorityClassAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchPriorityClassWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchPriorityClassWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61735,9 +66609,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources29(this IKubernetes operations) + public static V1APIResourceList GetAPIResources30(this IKubernetes operations) { - return operations.GetAPIResources29Async().GetAwaiter().GetResult(); + return operations.GetAPIResources30Async().GetAwaiter().GetResult(); } /// @@ -61749,9 +66623,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources29Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources30Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources29WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources30WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61788,9 +66662,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -61834,12 +66705,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PriorityClassList ListPriorityClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1PriorityClassList ListPriorityClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListPriorityClass1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListPriorityClass1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -61873,9 +66747,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -61919,15 +66790,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListPriorityClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListPriorityClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListPriorityClass1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListPriorityClass1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -61941,12 +66815,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PriorityClass CreatePriorityClass1(this IKubernetes operations, V1beta1PriorityClass body, string pretty = default(string)) + public static V1beta1PriorityClass CreatePriorityClass1(this IKubernetes operations, V1beta1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreatePriorityClass1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreatePriorityClass1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -61957,15 +66840,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreatePriorityClass1Async(this IKubernetes operations, V1beta1PriorityClass body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreatePriorityClass1Async(this IKubernetes operations, V1beta1PriorityClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreatePriorityClass1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreatePriorityClass1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62002,9 +66894,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -62048,12 +66937,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionPriorityClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionPriorityClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionPriorityClass1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionPriorityClass1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -62087,9 +66979,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -62133,15 +67022,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionPriorityClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionPriorityClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionPriorityClass1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionPriorityClass1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62214,12 +67106,18 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PriorityClass ReplacePriorityClass1(this IKubernetes operations, V1beta1PriorityClass body, string name, string pretty = default(string)) + public static V1beta1PriorityClass ReplacePriorityClass1(this IKubernetes operations, V1beta1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplacePriorityClass1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplacePriorityClass1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -62233,15 +67131,21 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplacePriorityClass1Async(this IKubernetes operations, V1beta1PriorityClass body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplacePriorityClass1Async(this IKubernetes operations, V1beta1PriorityClass body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplacePriorityClass1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplacePriorityClass1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62253,11 +67157,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -62289,9 +67193,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeletePriorityClass1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeletePriorityClass1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeletePriorityClass1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeletePriorityClass1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -62300,11 +67204,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PriorityClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -62339,9 +67243,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeletePriorityClass1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeletePriorityClass1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeletePriorityClass1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeletePriorityClass1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62358,12 +67262,18 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PriorityClass PatchPriorityClass1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1PriorityClass PatchPriorityClass1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchPriorityClass1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchPriorityClass1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -62377,15 +67287,21 @@ namespace k8s /// /// name of the PriorityClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchPriorityClass1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPriorityClass1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchPriorityClass1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchPriorityClass1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62397,9 +67313,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup16(this IKubernetes operations) + public static V1APIGroup GetAPIGroup17(this IKubernetes operations) { - return operations.GetAPIGroup16Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup17Async().GetAwaiter().GetResult(); } /// @@ -62411,9 +67327,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup16Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup17Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup16WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup17WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62425,9 +67341,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources30(this IKubernetes operations) + public static V1APIResourceList GetAPIResources31(this IKubernetes operations) { - return operations.GetAPIResources30Async().GetAwaiter().GetResult(); + return operations.GetAPIResources31Async().GetAwaiter().GetResult(); } /// @@ -62439,9 +67355,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources30Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources31Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources30WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources31WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62481,9 +67397,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -62527,12 +67440,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PodPresetList ListNamespacedPodPreset(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1PodPresetList ListNamespacedPodPreset(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListNamespacedPodPresetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListNamespacedPodPresetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -62569,9 +67485,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -62615,15 +67528,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListNamespacedPodPresetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListNamespacedPodPresetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNamespacedPodPresetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNamespacedPodPresetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62640,12 +67556,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PodPreset CreateNamespacedPodPreset(this IKubernetes operations, V1alpha1PodPreset body, string namespaceParameter, string pretty = default(string)) + public static V1alpha1PodPreset CreateNamespacedPodPreset(this IKubernetes operations, V1alpha1PodPreset body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateNamespacedPodPresetAsync(body, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.CreateNamespacedPodPresetAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -62659,15 +67584,24 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateNamespacedPodPresetAsync(this IKubernetes operations, V1alpha1PodPreset body, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateNamespacedPodPresetAsync(this IKubernetes operations, V1alpha1PodPreset body, string namespaceParameter, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateNamespacedPodPresetWithHttpMessagesAsync(body, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateNamespacedPodPresetWithHttpMessagesAsync(body, namespaceParameter, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62707,9 +67641,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -62753,12 +67684,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionNamespacedPodPreset(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionNamespacedPodPreset(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionNamespacedPodPresetAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionNamespacedPodPresetAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -62795,9 +67729,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -62841,15 +67772,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionNamespacedPodPresetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionNamespacedPodPresetAsync(this IKubernetes operations, string namespaceParameter, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionNamespacedPodPresetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionNamespacedPodPresetWithHttpMessagesAsync(namespaceParameter, continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62931,12 +67865,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PodPreset ReplaceNamespacedPodPreset(this IKubernetes operations, V1alpha1PodPreset body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1PodPreset ReplaceNamespacedPodPreset(this IKubernetes operations, V1alpha1PodPreset body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceNamespacedPodPresetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.ReplaceNamespacedPodPresetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -62953,15 +67893,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceNamespacedPodPresetAsync(this IKubernetes operations, V1alpha1PodPreset body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceNamespacedPodPresetAsync(this IKubernetes operations, V1alpha1PodPreset body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceNamespacedPodPresetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceNamespacedPodPresetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -62973,14 +67919,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodPreset /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -63012,9 +67958,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteNamespacedPodPreset(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteNamespacedPodPreset(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteNamespacedPodPresetAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteNamespacedPodPresetAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -63023,14 +67969,14 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the PodPreset /// /// /// object name and auth scope, such as for teams and projects /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -63065,9 +68011,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteNamespacedPodPresetAsync(this IKubernetes operations, V1DeleteOptions body, string name, string namespaceParameter, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteNamespacedPodPresetAsync(this IKubernetes operations, string name, string namespaceParameter, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteNamespacedPodPresetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteNamespacedPodPresetWithHttpMessagesAsync(name, namespaceParameter, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63087,12 +68033,18 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PodPreset PatchNamespacedPodPreset(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1PodPreset PatchNamespacedPodPreset(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchNamespacedPodPresetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); + return operations.PatchNamespacedPodPresetAsync(body, name, namespaceParameter, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -63109,15 +68061,21 @@ namespace k8s /// /// object name and auth scope, such as for teams and projects /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchNamespacedPodPresetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespacedPodPresetAsync(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchNamespacedPodPresetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchNamespacedPodPresetWithHttpMessagesAsync(body, name, namespaceParameter, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63305,9 +68263,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIGroup GetAPIGroup17(this IKubernetes operations) + public static V1APIGroup GetAPIGroup18(this IKubernetes operations) { - return operations.GetAPIGroup17Async().GetAwaiter().GetResult(); + return operations.GetAPIGroup18Async().GetAwaiter().GetResult(); } /// @@ -63319,9 +68277,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIGroup17Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIGroup18Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIGroup17WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIGroup18WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63333,9 +68291,9 @@ namespace k8s /// /// The operations group for this extension method. /// - public static V1APIResourceList GetAPIResources31(this IKubernetes operations) + public static V1APIResourceList GetAPIResources32(this IKubernetes operations) { - return operations.GetAPIResources31Async().GetAwaiter().GetResult(); + return operations.GetAPIResources32Async().GetAwaiter().GetResult(); } /// @@ -63347,9 +68305,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task GetAPIResources31Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAPIResources32Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAPIResources31WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAPIResources32WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63386,9 +68344,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -63432,12 +68387,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StorageClassList ListStorageClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1StorageClassList ListStorageClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListStorageClassAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListStorageClassAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -63471,9 +68429,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -63517,15 +68472,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListStorageClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListStorageClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListStorageClassWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListStorageClassWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63539,12 +68497,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StorageClass CreateStorageClass(this IKubernetes operations, V1StorageClass body, string pretty = default(string)) + public static V1StorageClass CreateStorageClass(this IKubernetes operations, V1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateStorageClassAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateStorageClassAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -63555,15 +68522,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateStorageClassAsync(this IKubernetes operations, V1StorageClass body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateStorageClassAsync(this IKubernetes operations, V1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateStorageClassWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateStorageClassWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63600,9 +68576,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -63646,12 +68619,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionStorageClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionStorageClass(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionStorageClassAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionStorageClassAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -63685,9 +68661,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -63731,15 +68704,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionStorageClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionStorageClassAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionStorageClassWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionStorageClassWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63812,12 +68788,18 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StorageClass ReplaceStorageClass(this IKubernetes operations, V1StorageClass body, string name, string pretty = default(string)) + public static V1StorageClass ReplaceStorageClass(this IKubernetes operations, V1StorageClass body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceStorageClassAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceStorageClassAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -63831,15 +68813,21 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceStorageClassAsync(this IKubernetes operations, V1StorageClass body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceStorageClassAsync(this IKubernetes operations, V1StorageClass body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceStorageClassWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceStorageClassWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63851,11 +68839,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -63887,9 +68875,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteStorageClass(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteStorageClass(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteStorageClassAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteStorageClassAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -63898,11 +68886,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -63937,9 +68925,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteStorageClassAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteStorageClassAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteStorageClassWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteStorageClassWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -63956,12 +68944,18 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1StorageClass PatchStorageClass(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1StorageClass PatchStorageClass(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchStorageClassAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchStorageClassAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -63975,43 +68969,21 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchStorageClassAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchStorageClassAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchStorageClassWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// get available resources - /// - /// - /// The operations group for this extension method. - /// - public static V1APIResourceList GetAPIResources32(this IKubernetes operations) - { - return operations.GetAPIResources32Async().GetAwaiter().GetResult(); - } - - /// - /// get available resources - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task GetAPIResources32Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetAPIResources32WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchStorageClassWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64048,9 +69020,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64094,12 +69063,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1VolumeAttachmentList ListVolumeAttachment(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1VolumeAttachmentList ListVolumeAttachment(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListVolumeAttachmentAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListVolumeAttachmentAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -64133,9 +69105,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64179,15 +69148,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListVolumeAttachmentAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListVolumeAttachmentAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListVolumeAttachmentWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListVolumeAttachmentWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64201,12 +69173,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1VolumeAttachment CreateVolumeAttachment(this IKubernetes operations, V1alpha1VolumeAttachment body, string pretty = default(string)) + public static V1VolumeAttachment CreateVolumeAttachment(this IKubernetes operations, V1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateVolumeAttachmentAsync(body, pretty).GetAwaiter().GetResult(); + return operations.CreateVolumeAttachmentAsync(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -64217,15 +69198,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateVolumeAttachmentAsync(this IKubernetes operations, V1alpha1VolumeAttachment body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateVolumeAttachmentAsync(this IKubernetes operations, V1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateVolumeAttachmentWithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateVolumeAttachmentWithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64262,9 +69252,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64308,12 +69295,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionVolumeAttachment(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionVolumeAttachment(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionVolumeAttachmentAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionVolumeAttachmentAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -64347,9 +69337,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64393,15 +69380,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionVolumeAttachmentAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionVolumeAttachmentAsync(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionVolumeAttachmentWithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionVolumeAttachmentWithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64427,7 +69417,7 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1VolumeAttachment ReadVolumeAttachment(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string)) + public static V1VolumeAttachment ReadVolumeAttachment(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string)) { return operations.ReadVolumeAttachmentAsync(name, exact, export, pretty).GetAwaiter().GetResult(); } @@ -64455,7 +69445,7 @@ namespace k8s /// /// The cancellation token. /// - public static async Task ReadVolumeAttachmentAsync(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReadVolumeAttachmentAsync(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ReadVolumeAttachmentWithHttpMessagesAsync(name, exact, export, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -64474,12 +69464,18 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1VolumeAttachment ReplaceVolumeAttachment(this IKubernetes operations, V1alpha1VolumeAttachment body, string name, string pretty = default(string)) + public static V1VolumeAttachment ReplaceVolumeAttachment(this IKubernetes operations, V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceVolumeAttachmentAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceVolumeAttachmentAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -64493,15 +69489,21 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceVolumeAttachmentAsync(this IKubernetes operations, V1alpha1VolumeAttachment body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceVolumeAttachmentAsync(this IKubernetes operations, V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceVolumeAttachmentWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceVolumeAttachmentWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64513,11 +69515,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -64549,9 +69551,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteVolumeAttachment(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteVolumeAttachment(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteVolumeAttachmentAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteVolumeAttachmentAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -64560,11 +69562,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -64599,9 +69601,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteVolumeAttachmentAsync(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteVolumeAttachmentAsync(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteVolumeAttachmentWithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteVolumeAttachmentWithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64618,12 +69620,18 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1VolumeAttachment PatchVolumeAttachment(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1VolumeAttachment PatchVolumeAttachment(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchVolumeAttachmentAsync(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchVolumeAttachmentAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -64637,15 +69645,173 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchVolumeAttachmentAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchVolumeAttachmentAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchVolumeAttachmentWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchVolumeAttachmentWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// read status of the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the VolumeAttachment + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1VolumeAttachment ReadVolumeAttachmentStatus(this IKubernetes operations, string name, string pretty = default(string)) + { + return operations.ReadVolumeAttachmentStatusAsync(name, pretty).GetAwaiter().GetResult(); + } + + /// + /// read status of the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the VolumeAttachment + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ReadVolumeAttachmentStatusAsync(this IKubernetes operations, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReadVolumeAttachmentStatusWithHttpMessagesAsync(name, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// replace status of the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1VolumeAttachment ReplaceVolumeAttachmentStatus(this IKubernetes operations, V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string)) + { + return operations.ReplaceVolumeAttachmentStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); + } + + /// + /// replace status of the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ReplaceVolumeAttachmentStatusAsync(this IKubernetes operations, V1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReplaceVolumeAttachmentStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// partially update status of the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1VolumeAttachment PatchVolumeAttachmentStatus(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) + { + return operations.PatchVolumeAttachmentStatusAsync(body, name, dryRun, pretty).GetAwaiter().GetResult(); + } + + /// + /// partially update status of the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task PatchVolumeAttachmentStatusAsync(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PatchVolumeAttachmentStatusWithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64680,7 +69846,7 @@ namespace k8s } /// - /// list or watch objects of kind StorageClass + /// list or watch objects of kind VolumeAttachment /// /// /// The operations group for this extension method. @@ -64710,9 +69876,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64756,12 +69919,634 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StorageClassList ListStorageClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1alpha1VolumeAttachmentList ListVolumeAttachment1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListStorageClass1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListVolumeAttachment1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// list or watch objects of kind VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ListVolumeAttachment1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListVolumeAttachment1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// create a VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1VolumeAttachment CreateVolumeAttachment1(this IKubernetes operations, V1alpha1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.CreateVolumeAttachment1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// create a VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task CreateVolumeAttachment1Async(this IKubernetes operations, V1alpha1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateVolumeAttachment1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// delete collection of VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1Status DeleteCollectionVolumeAttachment1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.DeleteCollectionVolumeAttachment1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// delete collection of VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// + /// + /// If true, partially initialized resources are included in the response. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteCollectionVolumeAttachment1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteCollectionVolumeAttachment1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// read the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the VolumeAttachment + /// + /// + /// Should the export be exact. Exact export maintains cluster-specific fields + /// like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user can not + /// specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1VolumeAttachment ReadVolumeAttachment1(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string)) + { + return operations.ReadVolumeAttachment1Async(name, exact, export, pretty).GetAwaiter().GetResult(); + } + + /// + /// read the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the VolumeAttachment + /// + /// + /// Should the export be exact. Exact export maintains cluster-specific fields + /// like 'Namespace'. + /// + /// + /// Should this value be exported. Export strips fields that a user can not + /// specify. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ReadVolumeAttachment1Async(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReadVolumeAttachment1WithHttpMessagesAsync(name, exact, export, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// replace the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1VolumeAttachment ReplaceVolumeAttachment1(this IKubernetes operations, V1alpha1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string)) + { + return operations.ReplaceVolumeAttachment1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); + } + + /// + /// replace the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task ReplaceVolumeAttachment1Async(this IKubernetes operations, V1alpha1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReplaceVolumeAttachment1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// delete a VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the VolumeAttachment + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// 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. Acceptable values are: 'Orphan' - orphan + /// the dependents; 'Background' - allow the garbage collector to delete the + /// dependents in the background; 'Foreground' - a cascading policy that + /// deletes all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1Status DeleteVolumeAttachment1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + { + return operations.DeleteVolumeAttachment1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + } + + /// + /// delete a VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// name of the VolumeAttachment + /// + /// + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// 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. Acceptable values are: 'Orphan' - orphan + /// the dependents; 'Background' - allow the garbage collector to delete the + /// dependents in the background; 'Foreground' - a cascading policy that + /// deletes all dependents in the foreground. + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteVolumeAttachment1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteVolumeAttachment1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// partially update the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1alpha1VolumeAttachment PatchVolumeAttachment1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) + { + return operations.PatchVolumeAttachment1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); + } + + /// + /// partially update the specified VolumeAttachment + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// name of the VolumeAttachment + /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If 'true', then the output is pretty printed. + /// + /// + /// The cancellation token. + /// + public static async Task PatchVolumeAttachment1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PatchVolumeAttachment1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// get available resources + /// + /// + /// The operations group for this extension method. + /// + public static V1APIResourceList GetAPIResources34(this IKubernetes operations) + { + return operations.GetAPIResources34Async().GetAwaiter().GetResult(); + } + + /// + /// get available resources + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetAPIResources34Async(this IKubernetes operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAPIResources34WithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// @@ -64795,9 +70580,91 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// + /// + /// A selector to restrict the list of returned objects by their labels. + /// Defaults to everything. + /// + /// + /// limit is a maximum number of responses to return for a list call. If more + /// items exist, the server will set the `continue` field on the list metadata + /// to a value that can be used with the same initial query to retrieve the + /// next set of results. Setting a limit may return fewer than the requested + /// amount of items (up to zero items) in the event all requested objects are + /// filtered out and clients should only use the presence of the continue field + /// to determine whether more results are available. Servers may choose not to + /// support the limit argument and will return all of the available results. If + /// limit is specified and the continue field is empty, clients may assume that + /// no more results are available. This field is not supported if watch is + /// true. + /// + /// The server guarantees that the objects returned when using continue will be + /// identical to issuing a single list call without a limit - that is, no + /// objects created, modified, or deleted after the first request is issued + /// will be included in any subsequent continued requests. This is sometimes + /// referred to as a consistent snapshot, and ensures that a client that is + /// using limit to receive smaller chunks of a very large result can ensure + /// they see all possible objects. If objects are updated during a chunked list + /// the version of the object that was present at the time the first list + /// result was calculated is returned. + /// + /// + /// When specified with a watch call, shows changes that occur after that + /// particular version of a resource. Defaults to changes from the beginning of + /// history. When specified for list: - if unset, then the result is returned + /// from remote storage based on quorum-read flag; - if it's 0, then we simply + /// return what we currently have in cache, no guarantee; - if set to non zero, + /// then the result is at least as fresh as given rv. + /// + /// + /// Timeout for the list/watch call. This limits the duration of the call, + /// regardless of any activity or inactivity. + /// + /// + /// Watch for changes to the described resources and return them as a stream of + /// add, update, and remove notifications. Specify resourceVersion. + /// /// /// If true, partially initialized resources are included in the response. /// + /// + /// If 'true', then the output is pretty printed. + /// + public static V1beta1StorageClassList ListStorageClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) + { + return operations.ListStorageClass1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); + } + + /// + /// list or watch objects of kind StorageClass + /// + /// + /// The operations group for this extension method. + /// + /// + /// The continue option should be set when retrieving more results from the + /// server. Since this value is server defined, clients may only use the + /// continue value from a previous query result with identical query parameters + /// (except for the value of continue) and the server may reject a continue + /// value it does not recognize. If the specified continue value is no longer + /// valid whether due to expiration (generally five to fifteen minutes) or a + /// configuration change on the server, the server will respond with a 410 + /// ResourceExpired error together with a continue token. If the client needs a + /// consistent list, it must restart their list without the continue field. + /// Otherwise, the client may send another list request with the token received + /// with the 410 error, the server will respond with a list starting from the + /// next key, but from the latest snapshot, which is inconsistent from the + /// previous list results - objects that are created, modified, or deleted + /// after the first list request will be included in the response, as long as + /// their keys are after the "next key". + /// + /// This field is not supported when watch is true. Clients may start a watch + /// from the last resourceVersion value returned by the server and not miss any + /// modifications. + /// + /// + /// A selector to restrict the list of returned objects by their fields. + /// Defaults to everything. + /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64841,15 +70708,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListStorageClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListStorageClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListStorageClass1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListStorageClass1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64863,12 +70733,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StorageClass CreateStorageClass1(this IKubernetes operations, V1beta1StorageClass body, string pretty = default(string)) + public static V1beta1StorageClass CreateStorageClass1(this IKubernetes operations, V1beta1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateStorageClass1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateStorageClass1Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -64879,15 +70758,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateStorageClass1Async(this IKubernetes operations, V1beta1StorageClass body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateStorageClass1Async(this IKubernetes operations, V1beta1StorageClass body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateStorageClass1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateStorageClass1WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -64924,9 +70812,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -64970,12 +70855,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionStorageClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionStorageClass1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionStorageClass1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionStorageClass1Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -65009,9 +70897,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -65055,15 +70940,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionStorageClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionStorageClass1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionStorageClass1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionStorageClass1WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65136,12 +71024,18 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StorageClass ReplaceStorageClass1(this IKubernetes operations, V1beta1StorageClass body, string name, string pretty = default(string)) + public static V1beta1StorageClass ReplaceStorageClass1(this IKubernetes operations, V1beta1StorageClass body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceStorageClass1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceStorageClass1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -65155,15 +71049,21 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceStorageClass1Async(this IKubernetes operations, V1beta1StorageClass body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceStorageClass1Async(this IKubernetes operations, V1beta1StorageClass body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceStorageClass1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceStorageClass1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65175,11 +71075,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -65211,9 +71111,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteStorageClass1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteStorageClass1(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteStorageClass1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteStorageClass1Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -65222,11 +71122,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the StorageClass /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -65261,9 +71161,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteStorageClass1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteStorageClass1Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteStorageClass1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteStorageClass1WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65280,12 +71180,18 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StorageClass PatchStorageClass1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1StorageClass PatchStorageClass1(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchStorageClass1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchStorageClass1Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -65299,15 +71205,21 @@ namespace k8s /// /// name of the StorageClass /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchStorageClass1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchStorageClass1Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchStorageClass1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchStorageClass1WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65344,9 +71256,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -65390,12 +71299,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1VolumeAttachmentList ListVolumeAttachment1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1beta1VolumeAttachmentList ListVolumeAttachment2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.ListVolumeAttachment1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.ListVolumeAttachment2Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -65429,9 +71341,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -65475,15 +71384,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ListVolumeAttachment1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListVolumeAttachment2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListVolumeAttachment1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListVolumeAttachment2WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65497,12 +71409,21 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1VolumeAttachment CreateVolumeAttachment1(this IKubernetes operations, V1beta1VolumeAttachment body, string pretty = default(string)) + public static V1beta1VolumeAttachment CreateVolumeAttachment2(this IKubernetes operations, V1beta1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.CreateVolumeAttachment1Async(body, pretty).GetAwaiter().GetResult(); + return operations.CreateVolumeAttachment2Async(body, dryRun, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -65513,15 +71434,24 @@ namespace k8s /// /// /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task CreateVolumeAttachment1Async(this IKubernetes operations, V1beta1VolumeAttachment body, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateVolumeAttachment2Async(this IKubernetes operations, V1beta1VolumeAttachment body, string dryRun = default(string), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateVolumeAttachment1WithHttpMessagesAsync(body, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateVolumeAttachment2WithHttpMessagesAsync(body, dryRun, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65558,9 +71488,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -65604,12 +71531,15 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteCollectionVolumeAttachment1(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string)) + public static V1Status DeleteCollectionVolumeAttachment2(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string)) { - return operations.DeleteCollectionVolumeAttachment1Async(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty).GetAwaiter().GetResult(); + return operations.DeleteCollectionVolumeAttachment2Async(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty).GetAwaiter().GetResult(); } /// @@ -65643,9 +71573,6 @@ namespace k8s /// A selector to restrict the list of returned objects by their fields. /// Defaults to everything. /// - /// - /// If true, partially initialized resources are included in the response. - /// /// /// A selector to restrict the list of returned objects by their labels. /// Defaults to everything. @@ -65689,15 +71616,18 @@ namespace k8s /// Watch for changes to the described resources and return them as a stream of /// add, update, and remove notifications. Specify resourceVersion. /// + /// + /// If true, partially initialized resources are included in the response. + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task DeleteCollectionVolumeAttachment1Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), bool? includeUninitialized = default(bool?), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteCollectionVolumeAttachment2Async(this IKubernetes operations, string continueParameter = default(string), string fieldSelector = default(string), string labelSelector = default(string), int? limit = default(int?), string resourceVersion = default(string), int? timeoutSeconds = default(int?), bool? watch = default(bool?), bool? includeUninitialized = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteCollectionVolumeAttachment1WithHttpMessagesAsync(continueParameter, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteCollectionVolumeAttachment2WithHttpMessagesAsync(continueParameter, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, includeUninitialized, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65723,9 +71653,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1beta1VolumeAttachment ReadVolumeAttachment1(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string)) + public static V1beta1VolumeAttachment ReadVolumeAttachment2(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string)) { - return operations.ReadVolumeAttachment1Async(name, exact, export, pretty).GetAwaiter().GetResult(); + return operations.ReadVolumeAttachment2Async(name, exact, export, pretty).GetAwaiter().GetResult(); } /// @@ -65751,9 +71681,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task ReadVolumeAttachment1Async(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReadVolumeAttachment2Async(this IKubernetes operations, string name, bool? exact = default(bool?), bool? export = default(bool?), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReadVolumeAttachment1WithHttpMessagesAsync(name, exact, export, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReadVolumeAttachment2WithHttpMessagesAsync(name, exact, export, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65770,12 +71700,18 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1VolumeAttachment ReplaceVolumeAttachment1(this IKubernetes operations, V1beta1VolumeAttachment body, string name, string pretty = default(string)) + public static V1beta1VolumeAttachment ReplaceVolumeAttachment2(this IKubernetes operations, V1beta1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.ReplaceVolumeAttachment1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.ReplaceVolumeAttachment2Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -65789,15 +71725,21 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task ReplaceVolumeAttachment1Async(this IKubernetes operations, V1beta1VolumeAttachment body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceVolumeAttachment2Async(this IKubernetes operations, V1beta1VolumeAttachment body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ReplaceVolumeAttachment1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceVolumeAttachment2WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65809,11 +71751,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -65845,9 +71787,9 @@ namespace k8s /// /// If 'true', then the output is pretty printed. /// - public static V1Status DeleteVolumeAttachment1(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) + public static V1Status DeleteVolumeAttachment2(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string)) { - return operations.DeleteVolumeAttachment1Async(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); + return operations.DeleteVolumeAttachment2Async(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty).GetAwaiter().GetResult(); } /// @@ -65856,11 +71798,11 @@ namespace k8s /// /// The operations group for this extension method. /// - /// - /// /// /// name of the VolumeAttachment /// + /// + /// /// /// When present, indicates that modifications should not be persisted. An /// invalid or unrecognized dryRun directive will result in an error response @@ -65895,9 +71837,9 @@ namespace k8s /// /// The cancellation token. /// - public static async Task DeleteVolumeAttachment1Async(this IKubernetes operations, V1DeleteOptions body, string name, string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteVolumeAttachment2Async(this IKubernetes operations, string name, V1DeleteOptions body = default(V1DeleteOptions), string dryRun = default(string), int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteVolumeAttachment1WithHttpMessagesAsync(body, name, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteVolumeAttachment2WithHttpMessagesAsync(name, body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -65914,12 +71856,18 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// - public static V1beta1VolumeAttachment PatchVolumeAttachment1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) + public static V1beta1VolumeAttachment PatchVolumeAttachment2(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string)) { - return operations.PatchVolumeAttachment1Async(body, name, pretty).GetAwaiter().GetResult(); + return operations.PatchVolumeAttachment2Async(body, name, dryRun, pretty).GetAwaiter().GetResult(); } /// @@ -65933,15 +71881,21 @@ namespace k8s /// /// name of the VolumeAttachment /// + /// + /// When present, indicates that modifications should not be persisted. An + /// invalid or unrecognized dryRun directive will result in an error response + /// and no further processing of the request. Valid values are: - All: all dry + /// run stages will be processed + /// /// /// If 'true', then the output is pretty printed. /// /// /// The cancellation token. /// - public static async Task PatchVolumeAttachment1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchVolumeAttachment2Async(this IKubernetes operations, V1Patch body, string name, string dryRun = default(string), string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchVolumeAttachment1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchVolumeAttachment2WithHttpMessagesAsync(body, name, dryRun, pretty, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/KubernetesClient/generated/Models/V1beta1WebhookClientConfig.cs b/src/KubernetesClient/generated/Models/Admissionregistrationv1beta1WebhookClientConfig.cs similarity index 80% rename from src/KubernetesClient/generated/Models/V1beta1WebhookClientConfig.cs rename to src/KubernetesClient/generated/Models/Admissionregistrationv1beta1WebhookClientConfig.cs index 0ea8b98..ce3e57e 100644 --- a/src/KubernetesClient/generated/Models/V1beta1WebhookClientConfig.cs +++ b/src/KubernetesClient/generated/Models/Admissionregistrationv1beta1WebhookClientConfig.cs @@ -6,7 +6,6 @@ namespace k8s.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -14,22 +13,24 @@ namespace k8s.Models /// WebhookClientConfig contains the information to make a TLS connection /// with the webhook /// - public partial class V1beta1WebhookClientConfig + public partial class Admissionregistrationv1beta1WebhookClientConfig { /// - /// Initializes a new instance of the V1beta1WebhookClientConfig class. + /// Initializes a new instance of the + /// Admissionregistrationv1beta1WebhookClientConfig class. /// - public V1beta1WebhookClientConfig() + public Admissionregistrationv1beta1WebhookClientConfig() { CustomInit(); } /// - /// Initializes a new instance of the V1beta1WebhookClientConfig class. + /// Initializes a new instance of the + /// Admissionregistrationv1beta1WebhookClientConfig class. /// /// `caBundle` is a PEM encoded CA bundle which - /// will be used to validate the webhook's server certificate. - /// Required. + /// will be used to validate the webhook's server certificate. If + /// unspecified, system trust roots on the apiserver are used. /// `service` is a reference to the service for /// this webhook. Either `service` or `url` must be specified. /// @@ -39,8 +40,8 @@ namespace k8s.Models /// Port 443 will be used if it is open, otherwise it is an /// error. /// `url` gives the location of the webhook, in - /// standard URL form (`[scheme://]host:port/path`). Exactly one of - /// `url` or `service` must be specified. + /// standard URL form (`scheme://host:port/path`). Exactly one of `url` + /// or `service` must be specified. /// /// The `host` should not refer to a service running in the cluster; /// use the `service` field instead. The host might be resolved via @@ -63,7 +64,7 @@ namespace k8s.Models /// Attempting to use a user or basic auth e.g. "user:password@" is not /// allowed. Fragments ("#...") and query parameters ("?...") are not /// allowed, either. - public V1beta1WebhookClientConfig(byte[] caBundle, Admissionregistrationv1beta1ServiceReference service = default(Admissionregistrationv1beta1ServiceReference), string url = default(string)) + public Admissionregistrationv1beta1WebhookClientConfig(byte[] caBundle = default(byte[]), Admissionregistrationv1beta1ServiceReference service = default(Admissionregistrationv1beta1ServiceReference), string url = default(string)) { CaBundle = caBundle; Service = service; @@ -78,7 +79,8 @@ namespace k8s.Models /// /// Gets or sets `caBundle` is a PEM encoded CA bundle which will be - /// used to validate the webhook's server certificate. Required. + /// used to validate the webhook's server certificate. If unspecified, + /// system trust roots on the apiserver are used. /// [JsonProperty(PropertyName = "caBundle")] public byte[] CaBundle { get; set; } @@ -97,7 +99,7 @@ namespace k8s.Models /// /// Gets or sets `url` gives the location of the webhook, in standard - /// URL form (`[scheme://]host:port/path`). Exactly one of `url` or + /// URL form (`scheme://host:port/path`). Exactly one of `url` or /// `service` must be specified. /// /// The `host` should not refer to a service running in the cluster; @@ -128,15 +130,11 @@ namespace k8s.Models /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (CaBundle == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "CaBundle"); - } if (Service != null) { Service.Validate(); diff --git a/src/KubernetesClient/generated/Models/Apiextensionsv1beta1ServiceReference.cs b/src/KubernetesClient/generated/Models/Apiextensionsv1beta1ServiceReference.cs new file mode 100644 index 0000000..2aebf8a --- /dev/null +++ b/src/KubernetesClient/generated/Models/Apiextensionsv1beta1ServiceReference.cs @@ -0,0 +1,87 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// ServiceReference holds a reference to Service.legacy.k8s.io + /// + public partial class Apiextensionsv1beta1ServiceReference + { + /// + /// Initializes a new instance of the + /// Apiextensionsv1beta1ServiceReference class. + /// + public Apiextensionsv1beta1ServiceReference() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// Apiextensionsv1beta1ServiceReference class. + /// + /// `name` is the name of the service. + /// Required + /// `namespace` is the namespace of the + /// service. Required + /// `path` is an optional URL path which will be + /// sent in any request to this service. + public Apiextensionsv1beta1ServiceReference(string name, string namespaceProperty, string path = default(string)) + { + Name = name; + NamespaceProperty = namespaceProperty; + Path = path; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets `name` is the name of the service. Required + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets `namespace` is the namespace of the service. Required + /// + [JsonProperty(PropertyName = "namespace")] + public string NamespaceProperty { get; set; } + + /// + /// Gets or sets `path` is an optional URL path which will be sent in + /// any request to this service. + /// + [JsonProperty(PropertyName = "path")] + public string Path { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (NamespaceProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "NamespaceProperty"); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/Apiextensionsv1beta1WebhookClientConfig.cs b/src/KubernetesClient/generated/Models/Apiextensionsv1beta1WebhookClientConfig.cs new file mode 100644 index 0000000..9ae79c0 --- /dev/null +++ b/src/KubernetesClient/generated/Models/Apiextensionsv1beta1WebhookClientConfig.cs @@ -0,0 +1,145 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// WebhookClientConfig contains the information to make a TLS connection + /// with the webhook. It has the same field as + /// admissionregistration.v1beta1.WebhookClientConfig. + /// + public partial class Apiextensionsv1beta1WebhookClientConfig + { + /// + /// Initializes a new instance of the + /// Apiextensionsv1beta1WebhookClientConfig class. + /// + public Apiextensionsv1beta1WebhookClientConfig() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// Apiextensionsv1beta1WebhookClientConfig class. + /// + /// `caBundle` is a PEM encoded CA bundle which + /// will be used to validate the webhook's server certificate. If + /// unspecified, system trust roots on the apiserver are used. + /// `service` is a reference to the service for + /// this webhook. Either `service` or `url` must be specified. + /// + /// If the webhook is running within the cluster, then you should use + /// `service`. + /// + /// Port 443 will be used if it is open, otherwise it is an + /// error. + /// `url` gives the location of the webhook, in + /// standard URL form (`scheme://host:port/path`). Exactly one of `url` + /// or `service` must be specified. + /// + /// The `host` should not refer to a service running in the cluster; + /// use the `service` field instead. The host might be resolved via + /// external DNS in some apiservers (e.g., `kube-apiserver` cannot + /// resolve in-cluster DNS as that would be a layering violation). + /// `host` may also be an IP address. + /// + /// Please note that using `localhost` or `127.0.0.1` as a `host` is + /// risky unless you take great care to run this webhook on all hosts + /// which run an apiserver which might need to make calls to this + /// webhook. Such installs are likely to be non-portable, i.e., not + /// easy to turn up in a new cluster. + /// + /// The scheme must be "https"; the URL must begin with "https://". + /// + /// A path is optional, and if present may be any string permissible in + /// a URL. You may use the path to pass an arbitrary string to the + /// webhook, for example, a cluster identifier. + /// + /// Attempting to use a user or basic auth e.g. "user:password@" is not + /// allowed. Fragments ("#...") and query parameters ("?...") are not + /// allowed, either. + public Apiextensionsv1beta1WebhookClientConfig(byte[] caBundle = default(byte[]), Apiextensionsv1beta1ServiceReference service = default(Apiextensionsv1beta1ServiceReference), string url = default(string)) + { + CaBundle = caBundle; + Service = service; + Url = url; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets `caBundle` is a PEM encoded CA bundle which will be + /// used to validate the webhook's server certificate. If unspecified, + /// system trust roots on the apiserver are used. + /// + [JsonProperty(PropertyName = "caBundle")] + public byte[] CaBundle { get; set; } + + /// + /// Gets or sets `service` is a reference to the service for this + /// webhook. Either `service` or `url` must be specified. + /// + /// If the webhook is running within the cluster, then you should use + /// `service`. + /// + /// Port 443 will be used if it is open, otherwise it is an error. + /// + [JsonProperty(PropertyName = "service")] + public Apiextensionsv1beta1ServiceReference Service { get; set; } + + /// + /// Gets or sets `url` gives the location of the webhook, in standard + /// URL form (`scheme://host:port/path`). Exactly one of `url` or + /// `service` must be specified. + /// + /// The `host` should not refer to a service running in the cluster; + /// use the `service` field instead. The host might be resolved via + /// external DNS in some apiservers (e.g., `kube-apiserver` cannot + /// resolve in-cluster DNS as that would be a layering violation). + /// `host` may also be an IP address. + /// + /// Please note that using `localhost` or `127.0.0.1` as a `host` is + /// risky unless you take great care to run this webhook on all hosts + /// which run an apiserver which might need to make calls to this + /// webhook. Such installs are likely to be non-portable, i.e., not + /// easy to turn up in a new cluster. + /// + /// The scheme must be "https"; the URL must begin with "https://". + /// + /// A path is optional, and if present may be any string permissible in + /// a URL. You may use the path to pass an arbitrary string to the + /// webhook, for example, a cluster identifier. + /// + /// Attempting to use a user or basic auth e.g. "user:password@" is not + /// allowed. Fragments ("#...") and query parameters ("?...") are not + /// allowed, either. + /// + [JsonProperty(PropertyName = "url")] + public string Url { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Service != null) + { + Service.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/Extensionsv1beta1DeploymentSpec.cs b/src/KubernetesClient/generated/Models/Extensionsv1beta1DeploymentSpec.cs index acfd002..6430e63 100644 --- a/src/KubernetesClient/generated/Models/Extensionsv1beta1DeploymentSpec.cs +++ b/src/KubernetesClient/generated/Models/Extensionsv1beta1DeploymentSpec.cs @@ -50,7 +50,9 @@ namespace k8s.Models /// 1. /// The number of old ReplicaSets to /// retain to allow rollback. This is a pointer to distinguish between - /// explicit zero and not specified. + /// explicit zero and not specified. This is set to the max value of + /// int32 (i.e. 2147483647) by default, which means "retaining all old + /// RelicaSets". /// DEPRECATED. The config this deployment is /// rolling back to. Will be cleared after rollback is done. /// Label selector for pods. Existing @@ -116,7 +118,8 @@ namespace k8s.Models /// /// Gets or sets the number of old ReplicaSets to retain to allow /// rollback. This is a pointer to distinguish between explicit zero - /// and not specified. + /// and not specified. This is set to the max value of int32 (i.e. + /// 2147483647) by default, which means "retaining all old RelicaSets". /// [JsonProperty(PropertyName = "revisionHistoryLimit")] public int? RevisionHistoryLimit { get; set; } diff --git a/src/KubernetesClient/generated/Models/Extensionsv1beta1PodSecurityPolicySpec.cs b/src/KubernetesClient/generated/Models/Extensionsv1beta1PodSecurityPolicySpec.cs index 1996911..71e92ab 100644 --- a/src/KubernetesClient/generated/Models/Extensionsv1beta1PodSecurityPolicySpec.cs +++ b/src/KubernetesClient/generated/Models/Extensionsv1beta1PodSecurityPolicySpec.cs @@ -106,10 +106,14 @@ namespace k8s.Models /// requiredDropCapabilities are /// the capabilities that will be dropped from the container. These /// are required to be dropped and cannot be added. + /// RunAsGroup is the strategy that will + /// dictate the allowable RunAsGroup values that may be set. If this + /// field is omitted, the pod's RunAsGroup can take any value. This + /// field requires the RunAsGroup feature gate to be enabled. /// volumes is a white list of allowed volume /// plugins. Empty indicates that no volumes may be used. To allow all /// volumes you may use '*'. - public Extensionsv1beta1PodSecurityPolicySpec(Extensionsv1beta1FSGroupStrategyOptions fsGroup, Extensionsv1beta1RunAsUserStrategyOptions runAsUser, Extensionsv1beta1SELinuxStrategyOptions seLinux, Extensionsv1beta1SupplementalGroupsStrategyOptions supplementalGroups, bool? allowPrivilegeEscalation = default(bool?), IList allowedCapabilities = default(IList), IList allowedFlexVolumes = default(IList), IList allowedHostPaths = default(IList), IList allowedProcMountTypes = default(IList), IList allowedUnsafeSysctls = default(IList), IList defaultAddCapabilities = default(IList), bool? defaultAllowPrivilegeEscalation = default(bool?), IList forbiddenSysctls = default(IList), bool? hostIPC = default(bool?), bool? hostNetwork = default(bool?), bool? hostPID = default(bool?), IList hostPorts = default(IList), bool? privileged = default(bool?), bool? readOnlyRootFilesystem = default(bool?), IList requiredDropCapabilities = default(IList), IList volumes = default(IList)) + public Extensionsv1beta1PodSecurityPolicySpec(Extensionsv1beta1FSGroupStrategyOptions fsGroup, Extensionsv1beta1RunAsUserStrategyOptions runAsUser, Extensionsv1beta1SELinuxStrategyOptions seLinux, Extensionsv1beta1SupplementalGroupsStrategyOptions supplementalGroups, bool? allowPrivilegeEscalation = default(bool?), IList allowedCapabilities = default(IList), IList allowedFlexVolumes = default(IList), IList allowedHostPaths = default(IList), IList allowedProcMountTypes = default(IList), IList allowedUnsafeSysctls = default(IList), IList defaultAddCapabilities = default(IList), bool? defaultAllowPrivilegeEscalation = default(bool?), IList forbiddenSysctls = default(IList), bool? hostIPC = default(bool?), bool? hostNetwork = default(bool?), bool? hostPID = default(bool?), IList hostPorts = default(IList), bool? privileged = default(bool?), bool? readOnlyRootFilesystem = default(bool?), IList requiredDropCapabilities = default(IList), Extensionsv1beta1RunAsGroupStrategyOptions runAsGroup = default(Extensionsv1beta1RunAsGroupStrategyOptions), IList volumes = default(IList)) { AllowPrivilegeEscalation = allowPrivilegeEscalation; AllowedCapabilities = allowedCapabilities; @@ -128,6 +132,7 @@ namespace k8s.Models Privileged = privileged; ReadOnlyRootFilesystem = readOnlyRootFilesystem; RequiredDropCapabilities = requiredDropCapabilities; + RunAsGroup = runAsGroup; RunAsUser = runAsUser; SeLinux = seLinux; SupplementalGroups = supplementalGroups; @@ -289,6 +294,15 @@ namespace k8s.Models [JsonProperty(PropertyName = "requiredDropCapabilities")] public IList RequiredDropCapabilities { get; set; } + /// + /// Gets or sets runAsGroup is the strategy that will dictate the + /// allowable RunAsGroup values that may be set. If this field is + /// omitted, the pod's RunAsGroup can take any value. This field + /// requires the RunAsGroup feature gate to be enabled. + /// + [JsonProperty(PropertyName = "runAsGroup")] + public Extensionsv1beta1RunAsGroupStrategyOptions RunAsGroup { get; set; } + /// /// Gets or sets runAsUser is the strategy that will dictate the /// allowable RunAsUser values that may be set. @@ -362,6 +376,10 @@ namespace k8s.Models } } } + if (RunAsGroup != null) + { + RunAsGroup.Validate(); + } if (RunAsUser != null) { RunAsUser.Validate(); diff --git a/src/KubernetesClient/generated/Models/Extensionsv1beta1RunAsGroupStrategyOptions.cs b/src/KubernetesClient/generated/Models/Extensionsv1beta1RunAsGroupStrategyOptions.cs new file mode 100644 index 0000000..bb17a86 --- /dev/null +++ b/src/KubernetesClient/generated/Models/Extensionsv1beta1RunAsGroupStrategyOptions.cs @@ -0,0 +1,92 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// RunAsGroupStrategyOptions defines the strategy type and any options + /// used to create the strategy. Deprecated: use RunAsGroupStrategyOptions + /// from policy API Group instead. + /// + public partial class Extensionsv1beta1RunAsGroupStrategyOptions + { + /// + /// Initializes a new instance of the + /// Extensionsv1beta1RunAsGroupStrategyOptions class. + /// + public Extensionsv1beta1RunAsGroupStrategyOptions() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// Extensionsv1beta1RunAsGroupStrategyOptions class. + /// + /// rule is the strategy that will dictate the + /// allowable RunAsGroup values that may be set. + /// ranges are the allowed ranges of gids that may + /// be used. If you would like to force a single gid then supply a + /// single range with the same start and end. Required for + /// MustRunAs. + public Extensionsv1beta1RunAsGroupStrategyOptions(string rule, IList ranges = default(IList)) + { + Ranges = ranges; + Rule = rule; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets ranges are the allowed ranges of gids that may be + /// used. If you would like to force a single gid then supply a single + /// range with the same start and end. Required for MustRunAs. + /// + [JsonProperty(PropertyName = "ranges")] + public IList Ranges { get; set; } + + /// + /// Gets or sets rule is the strategy that will dictate the allowable + /// RunAsGroup values that may be set. + /// + [JsonProperty(PropertyName = "rule")] + public string Rule { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Rule == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Rule"); + } + if (Ranges != null) + { + foreach (var element in Ranges) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/Policyv1beta1PodSecurityPolicySpec.cs b/src/KubernetesClient/generated/Models/Policyv1beta1PodSecurityPolicySpec.cs index 54b50de..bb648b5 100644 --- a/src/KubernetesClient/generated/Models/Policyv1beta1PodSecurityPolicySpec.cs +++ b/src/KubernetesClient/generated/Models/Policyv1beta1PodSecurityPolicySpec.cs @@ -105,10 +105,14 @@ namespace k8s.Models /// requiredDropCapabilities are /// the capabilities that will be dropped from the container. These /// are required to be dropped and cannot be added. + /// RunAsGroup is the strategy that will + /// dictate the allowable RunAsGroup values that may be set. If this + /// field is omitted, the pod's RunAsGroup can take any value. This + /// field requires the RunAsGroup feature gate to be enabled. /// volumes is a white list of allowed volume /// plugins. Empty indicates that no volumes may be used. To allow all /// volumes you may use '*'. - public Policyv1beta1PodSecurityPolicySpec(Policyv1beta1FSGroupStrategyOptions fsGroup, Policyv1beta1RunAsUserStrategyOptions runAsUser, Policyv1beta1SELinuxStrategyOptions seLinux, Policyv1beta1SupplementalGroupsStrategyOptions supplementalGroups, bool? allowPrivilegeEscalation = default(bool?), IList allowedCapabilities = default(IList), IList allowedFlexVolumes = default(IList), IList allowedHostPaths = default(IList), IList allowedProcMountTypes = default(IList), IList allowedUnsafeSysctls = default(IList), IList defaultAddCapabilities = default(IList), bool? defaultAllowPrivilegeEscalation = default(bool?), IList forbiddenSysctls = default(IList), bool? hostIPC = default(bool?), bool? hostNetwork = default(bool?), bool? hostPID = default(bool?), IList hostPorts = default(IList), bool? privileged = default(bool?), bool? readOnlyRootFilesystem = default(bool?), IList requiredDropCapabilities = default(IList), IList volumes = default(IList)) + public Policyv1beta1PodSecurityPolicySpec(Policyv1beta1FSGroupStrategyOptions fsGroup, Policyv1beta1RunAsUserStrategyOptions runAsUser, Policyv1beta1SELinuxStrategyOptions seLinux, Policyv1beta1SupplementalGroupsStrategyOptions supplementalGroups, bool? allowPrivilegeEscalation = default(bool?), IList allowedCapabilities = default(IList), IList allowedFlexVolumes = default(IList), IList allowedHostPaths = default(IList), IList allowedProcMountTypes = default(IList), IList allowedUnsafeSysctls = default(IList), IList defaultAddCapabilities = default(IList), bool? defaultAllowPrivilegeEscalation = default(bool?), IList forbiddenSysctls = default(IList), bool? hostIPC = default(bool?), bool? hostNetwork = default(bool?), bool? hostPID = default(bool?), IList hostPorts = default(IList), bool? privileged = default(bool?), bool? readOnlyRootFilesystem = default(bool?), IList requiredDropCapabilities = default(IList), Policyv1beta1RunAsGroupStrategyOptions runAsGroup = default(Policyv1beta1RunAsGroupStrategyOptions), IList volumes = default(IList)) { AllowPrivilegeEscalation = allowPrivilegeEscalation; AllowedCapabilities = allowedCapabilities; @@ -127,6 +131,7 @@ namespace k8s.Models Privileged = privileged; ReadOnlyRootFilesystem = readOnlyRootFilesystem; RequiredDropCapabilities = requiredDropCapabilities; + RunAsGroup = runAsGroup; RunAsUser = runAsUser; SeLinux = seLinux; SupplementalGroups = supplementalGroups; @@ -288,6 +293,15 @@ namespace k8s.Models [JsonProperty(PropertyName = "requiredDropCapabilities")] public IList RequiredDropCapabilities { get; set; } + /// + /// Gets or sets runAsGroup is the strategy that will dictate the + /// allowable RunAsGroup values that may be set. If this field is + /// omitted, the pod's RunAsGroup can take any value. This field + /// requires the RunAsGroup feature gate to be enabled. + /// + [JsonProperty(PropertyName = "runAsGroup")] + public Policyv1beta1RunAsGroupStrategyOptions RunAsGroup { get; set; } + /// /// Gets or sets runAsUser is the strategy that will dictate the /// allowable RunAsUser values that may be set. @@ -361,6 +375,10 @@ namespace k8s.Models } } } + if (RunAsGroup != null) + { + RunAsGroup.Validate(); + } if (RunAsUser != null) { RunAsUser.Validate(); diff --git a/src/KubernetesClient/generated/Models/Policyv1beta1RunAsGroupStrategyOptions.cs b/src/KubernetesClient/generated/Models/Policyv1beta1RunAsGroupStrategyOptions.cs new file mode 100644 index 0000000..fa81ddf --- /dev/null +++ b/src/KubernetesClient/generated/Models/Policyv1beta1RunAsGroupStrategyOptions.cs @@ -0,0 +1,91 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// RunAsGroupStrategyOptions defines the strategy type and any options + /// used to create the strategy. + /// + public partial class Policyv1beta1RunAsGroupStrategyOptions + { + /// + /// Initializes a new instance of the + /// Policyv1beta1RunAsGroupStrategyOptions class. + /// + public Policyv1beta1RunAsGroupStrategyOptions() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// Policyv1beta1RunAsGroupStrategyOptions class. + /// + /// rule is the strategy that will dictate the + /// allowable RunAsGroup values that may be set. + /// ranges are the allowed ranges of gids that may + /// be used. If you would like to force a single gid then supply a + /// single range with the same start and end. Required for + /// MustRunAs. + public Policyv1beta1RunAsGroupStrategyOptions(string rule, IList ranges = default(IList)) + { + Ranges = ranges; + Rule = rule; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets ranges are the allowed ranges of gids that may be + /// used. If you would like to force a single gid then supply a single + /// range with the same start and end. Required for MustRunAs. + /// + [JsonProperty(PropertyName = "ranges")] + public IList Ranges { get; set; } + + /// + /// Gets or sets rule is the strategy that will dictate the allowable + /// RunAsGroup values that may be set. + /// + [JsonProperty(PropertyName = "rule")] + public string Rule { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Rule == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Rule"); + } + if (Ranges != null) + { + foreach (var element in Ranges) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1APIServiceSpec.cs b/src/KubernetesClient/generated/Models/V1APIServiceSpec.cs index 778e631..e484bed 100644 --- a/src/KubernetesClient/generated/Models/V1APIServiceSpec.cs +++ b/src/KubernetesClient/generated/Models/V1APIServiceSpec.cs @@ -61,8 +61,8 @@ namespace k8s.Models /// of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, /// v11alpha2, foo1, foo10. /// CABundle is a PEM encoded CA bundle which - /// will be used to validate an API server's serving - /// certificate. + /// will be used to validate an API server's serving certificate. If + /// unspecified, system trust roots on the apiserver are used. /// Group is the API group name this server /// hosts /// InsecureSkipTLSVerify disables @@ -90,7 +90,8 @@ namespace k8s.Models /// /// Gets or sets cABundle is a PEM encoded CA bundle which will be used - /// to validate an API server's serving certificate. + /// to validate an API server's serving certificate. If unspecified, + /// system trust roots on the apiserver are used. /// [JsonProperty(PropertyName = "caBundle")] public byte[] CaBundle { get; set; } diff --git a/src/KubernetesClient/generated/Models/V1CSIPersistentVolumeSource.cs b/src/KubernetesClient/generated/Models/V1CSIPersistentVolumeSource.cs index 0e0dc88..5a30646 100644 --- a/src/KubernetesClient/generated/Models/V1CSIPersistentVolumeSource.cs +++ b/src/KubernetesClient/generated/Models/V1CSIPersistentVolumeSource.cs @@ -40,7 +40,7 @@ namespace k8s.Models /// is a reference to the secret object containing sensitive /// information to pass to the CSI driver to complete the CSI /// ControllerPublishVolume and ControllerUnpublishVolume calls. This - /// field is optional, and may be empty if no secret is required. If + /// field is optional, and may be empty if no secret is required. If /// the secret object contains more than one secret, all secrets are /// passed. /// Filesystem type to mount. Must be a filesystem @@ -49,14 +49,14 @@ namespace k8s.Models /// NodePublishSecretRef is a /// reference to the secret object containing sensitive information to /// pass to the CSI driver to complete the CSI NodePublishVolume and - /// NodeUnpublishVolume calls. This field is optional, and may be - /// empty if no secret is required. If the secret object contains more - /// than one secret, all secrets are passed. + /// NodeUnpublishVolume calls. This field is optional, and may be empty + /// if no secret is required. If the secret object contains more than + /// one secret, all secrets are passed. /// NodeStageSecretRef is a reference /// to the secret object containing sensitive information to pass to /// the CSI driver to complete the CSI NodeStageVolume and /// NodeStageVolume and NodeUnstageVolume calls. This field is - /// optional, and may be empty if no secret is required. If the secret + /// optional, and may be empty if no secret is required. If the secret /// object contains more than one secret, all secrets are /// passed. /// Optional: The value to pass to @@ -86,9 +86,9 @@ namespace k8s.Models /// Gets or sets controllerPublishSecretRef is a reference to the /// secret object containing sensitive information to pass to the CSI /// driver to complete the CSI ControllerPublishVolume and - /// ControllerUnpublishVolume calls. This field is optional, and may - /// be empty if no secret is required. If the secret object contains - /// more than one secret, all secrets are passed. + /// ControllerUnpublishVolume calls. This field is optional, and may be + /// empty if no secret is required. If the secret object contains more + /// than one secret, all secrets are passed. /// [JsonProperty(PropertyName = "controllerPublishSecretRef")] public V1SecretReference ControllerPublishSecretRef { get; set; } @@ -111,7 +111,7 @@ namespace k8s.Models /// Gets or sets nodePublishSecretRef is a reference to the secret /// object containing sensitive information to pass to the CSI driver /// to complete the CSI NodePublishVolume and NodeUnpublishVolume - /// calls. This field is optional, and may be empty if no secret is + /// calls. This field is optional, and may be empty if no secret is /// required. If the secret object contains more than one secret, all /// secrets are passed. /// @@ -122,7 +122,7 @@ namespace k8s.Models /// Gets or sets nodeStageSecretRef is a reference to the secret object /// containing sensitive information to pass to the CSI driver to /// complete the CSI NodeStageVolume and NodeStageVolume and - /// NodeUnstageVolume calls. This field is optional, and may be empty + /// NodeUnstageVolume calls. This field is optional, and may be empty /// if no secret is required. If the secret object contains more than /// one secret, all secrets are passed. /// diff --git a/src/KubernetesClient/generated/Models/V1Container.cs b/src/KubernetesClient/generated/Models/V1Container.cs index 2086227..b5553b8 100644 --- a/src/KubernetesClient/generated/Models/V1Container.cs +++ b/src/KubernetesClient/generated/Models/V1Container.cs @@ -125,8 +125,8 @@ namespace k8s.Models /// Whether this container should allocate a TTY for /// itself, also requires 'stdin' to be true. Default is false. /// volumeDevices is the list of block - /// devices to be used by the container. This is an alpha feature and - /// may change in the future. + /// devices to be used by the container. This is a beta + /// feature. /// Pod volumes to mount into the /// container's filesystem. Cannot be updated. /// Container's working directory. If not @@ -346,8 +346,7 @@ namespace k8s.Models /// /// Gets or sets volumeDevices is the list of block devices to be used - /// by the container. This is an alpha feature and may change in the - /// future. + /// by the container. This is a beta feature. /// [JsonProperty(PropertyName = "volumeDevices")] public IList VolumeDevices { get; set; } diff --git a/src/KubernetesClient/generated/Models/V1GlusterfsPersistentVolumeSource.cs b/src/KubernetesClient/generated/Models/V1GlusterfsPersistentVolumeSource.cs new file mode 100644 index 0000000..3daa0fb --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1GlusterfsPersistentVolumeSource.cs @@ -0,0 +1,111 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Represents a Glusterfs mount that lasts the lifetime of a pod. + /// Glusterfs volumes do not support ownership management or SELinux + /// relabeling. + /// + public partial class V1GlusterfsPersistentVolumeSource + { + /// + /// Initializes a new instance of the V1GlusterfsPersistentVolumeSource + /// class. + /// + public V1GlusterfsPersistentVolumeSource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1GlusterfsPersistentVolumeSource + /// class. + /// + /// EndpointsName is the endpoint name that + /// details Glusterfs topology. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// Path is the Glusterfs volume path. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// EndpointsNamespace is the + /// namespace that contains Glusterfs endpoint. If this field is empty, + /// the EndpointNamespace defaults to the same namespace as the bound + /// PVC. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// ReadOnly here will force the + /// Glusterfs volume to be mounted with read-only permissions. Defaults + /// to false. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + public V1GlusterfsPersistentVolumeSource(string endpoints, string path, string endpointsNamespace = default(string), bool? readOnlyProperty = default(bool?)) + { + Endpoints = endpoints; + EndpointsNamespace = endpointsNamespace; + Path = path; + ReadOnlyProperty = readOnlyProperty; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets endpointsName is the endpoint name that details + /// Glusterfs topology. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// + [JsonProperty(PropertyName = "endpoints")] + public string Endpoints { get; set; } + + /// + /// Gets or sets endpointsNamespace is the namespace that contains + /// Glusterfs endpoint. If this field is empty, the EndpointNamespace + /// defaults to the same namespace as the bound PVC. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// + [JsonProperty(PropertyName = "endpointsNamespace")] + public string EndpointsNamespace { get; set; } + + /// + /// Gets or sets path is the Glusterfs volume path. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// + [JsonProperty(PropertyName = "path")] + public string Path { get; set; } + + /// + /// Gets or sets readOnly here will force the Glusterfs volume to be + /// mounted with read-only permissions. Defaults to false. More info: + /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod + /// + [JsonProperty(PropertyName = "readOnly")] + public bool? ReadOnlyProperty { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Endpoints == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Endpoints"); + } + if (Path == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Path"); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1OwnerReference.cs b/src/KubernetesClient/generated/Models/V1OwnerReference.cs index 3401671..bcadd58 100644 --- a/src/KubernetesClient/generated/Models/V1OwnerReference.cs +++ b/src/KubernetesClient/generated/Models/V1OwnerReference.cs @@ -12,8 +12,8 @@ namespace k8s.Models /// /// OwnerReference contains enough information to let you identify an - /// owning object. Currently, an owning object must be in the same - /// namespace, so there is no namespace field. + /// owning object. An owning object must be in the same namespace as the + /// dependent, or be cluster-scoped, so there is no namespace field. /// public partial class V1OwnerReference { diff --git a/src/KubernetesClient/generated/Models/V1PersistentVolumeClaimSpec.cs b/src/KubernetesClient/generated/Models/V1PersistentVolumeClaimSpec.cs index 63a5ec1..d864b91 100644 --- a/src/KubernetesClient/generated/Models/V1PersistentVolumeClaimSpec.cs +++ b/src/KubernetesClient/generated/Models/V1PersistentVolumeClaimSpec.cs @@ -52,8 +52,7 @@ namespace k8s.Models /// https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 /// volumeMode defines what type of volume is /// required by the claim. Value of Filesystem is implied when not - /// included in claim spec. This is an alpha feature and may change in - /// the future. + /// included in claim spec. This is a beta feature. /// VolumeName is the binding reference to the /// PersistentVolume backing this claim. public V1PersistentVolumeClaimSpec(IList accessModes = default(IList), V1TypedLocalObjectReference dataSource = default(V1TypedLocalObjectReference), V1ResourceRequirements resources = default(V1ResourceRequirements), V1LabelSelector selector = default(V1LabelSelector), string storageClassName = default(string), string volumeMode = default(string), string volumeName = default(string)) @@ -120,7 +119,7 @@ namespace k8s.Models /// /// Gets or sets volumeMode defines what type of volume is required by /// the claim. Value of Filesystem is implied when not included in - /// claim spec. This is an alpha feature and may change in the future. + /// claim spec. This is a beta feature. /// [JsonProperty(PropertyName = "volumeMode")] public string VolumeMode { get; set; } diff --git a/src/KubernetesClient/generated/Models/V1PersistentVolumeSpec.cs b/src/KubernetesClient/generated/Models/V1PersistentVolumeSpec.cs index 42b7c3d..5aeccfc 100644 --- a/src/KubernetesClient/generated/Models/V1PersistentVolumeSpec.cs +++ b/src/KubernetesClient/generated/Models/V1PersistentVolumeSpec.cs @@ -120,10 +120,10 @@ namespace k8s.Models /// volumeMode defines if a volume is intended /// to be used with a formatted filesystem or to remain in raw block /// state. Value of Filesystem is implied when not included in spec. - /// This is an alpha feature and may change in the future. + /// This is a beta feature. /// VsphereVolume represents a vSphere /// volume attached and mounted on kubelets host machine - public V1PersistentVolumeSpec(IList accessModes = default(IList), V1AWSElasticBlockStoreVolumeSource awsElasticBlockStore = default(V1AWSElasticBlockStoreVolumeSource), V1AzureDiskVolumeSource azureDisk = default(V1AzureDiskVolumeSource), V1AzureFilePersistentVolumeSource azureFile = default(V1AzureFilePersistentVolumeSource), IDictionary capacity = default(IDictionary), V1CephFSPersistentVolumeSource cephfs = default(V1CephFSPersistentVolumeSource), V1CinderPersistentVolumeSource cinder = default(V1CinderPersistentVolumeSource), V1ObjectReference claimRef = default(V1ObjectReference), V1CSIPersistentVolumeSource csi = default(V1CSIPersistentVolumeSource), V1FCVolumeSource fc = default(V1FCVolumeSource), V1FlexPersistentVolumeSource flexVolume = default(V1FlexPersistentVolumeSource), V1FlockerVolumeSource flocker = default(V1FlockerVolumeSource), V1GCEPersistentDiskVolumeSource gcePersistentDisk = default(V1GCEPersistentDiskVolumeSource), V1GlusterfsVolumeSource glusterfs = default(V1GlusterfsVolumeSource), V1HostPathVolumeSource hostPath = default(V1HostPathVolumeSource), V1ISCSIPersistentVolumeSource iscsi = default(V1ISCSIPersistentVolumeSource), V1LocalVolumeSource local = default(V1LocalVolumeSource), IList mountOptions = default(IList), V1NFSVolumeSource nfs = default(V1NFSVolumeSource), V1VolumeNodeAffinity nodeAffinity = default(V1VolumeNodeAffinity), string persistentVolumeReclaimPolicy = default(string), V1PhotonPersistentDiskVolumeSource photonPersistentDisk = default(V1PhotonPersistentDiskVolumeSource), V1PortworxVolumeSource portworxVolume = default(V1PortworxVolumeSource), V1QuobyteVolumeSource quobyte = default(V1QuobyteVolumeSource), V1RBDPersistentVolumeSource rbd = default(V1RBDPersistentVolumeSource), V1ScaleIOPersistentVolumeSource scaleIO = default(V1ScaleIOPersistentVolumeSource), string storageClassName = default(string), V1StorageOSPersistentVolumeSource storageos = default(V1StorageOSPersistentVolumeSource), string volumeMode = default(string), V1VsphereVirtualDiskVolumeSource vsphereVolume = default(V1VsphereVirtualDiskVolumeSource)) + public V1PersistentVolumeSpec(IList accessModes = default(IList), V1AWSElasticBlockStoreVolumeSource awsElasticBlockStore = default(V1AWSElasticBlockStoreVolumeSource), V1AzureDiskVolumeSource azureDisk = default(V1AzureDiskVolumeSource), V1AzureFilePersistentVolumeSource azureFile = default(V1AzureFilePersistentVolumeSource), IDictionary capacity = default(IDictionary), V1CephFSPersistentVolumeSource cephfs = default(V1CephFSPersistentVolumeSource), V1CinderPersistentVolumeSource cinder = default(V1CinderPersistentVolumeSource), V1ObjectReference claimRef = default(V1ObjectReference), V1CSIPersistentVolumeSource csi = default(V1CSIPersistentVolumeSource), V1FCVolumeSource fc = default(V1FCVolumeSource), V1FlexPersistentVolumeSource flexVolume = default(V1FlexPersistentVolumeSource), V1FlockerVolumeSource flocker = default(V1FlockerVolumeSource), V1GCEPersistentDiskVolumeSource gcePersistentDisk = default(V1GCEPersistentDiskVolumeSource), V1GlusterfsPersistentVolumeSource glusterfs = default(V1GlusterfsPersistentVolumeSource), V1HostPathVolumeSource hostPath = default(V1HostPathVolumeSource), V1ISCSIPersistentVolumeSource iscsi = default(V1ISCSIPersistentVolumeSource), V1LocalVolumeSource local = default(V1LocalVolumeSource), IList mountOptions = default(IList), V1NFSVolumeSource nfs = default(V1NFSVolumeSource), V1VolumeNodeAffinity nodeAffinity = default(V1VolumeNodeAffinity), string persistentVolumeReclaimPolicy = default(string), V1PhotonPersistentDiskVolumeSource photonPersistentDisk = default(V1PhotonPersistentDiskVolumeSource), V1PortworxVolumeSource portworxVolume = default(V1PortworxVolumeSource), V1QuobyteVolumeSource quobyte = default(V1QuobyteVolumeSource), V1RBDPersistentVolumeSource rbd = default(V1RBDPersistentVolumeSource), V1ScaleIOPersistentVolumeSource scaleIO = default(V1ScaleIOPersistentVolumeSource), string storageClassName = default(string), V1StorageOSPersistentVolumeSource storageos = default(V1StorageOSPersistentVolumeSource), string volumeMode = default(string), V1VsphereVirtualDiskVolumeSource vsphereVolume = default(V1VsphereVirtualDiskVolumeSource)) { AccessModes = accessModes; AwsElasticBlockStore = awsElasticBlockStore; @@ -272,7 +272,7 @@ namespace k8s.Models /// https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md /// [JsonProperty(PropertyName = "glusterfs")] - public V1GlusterfsVolumeSource Glusterfs { get; set; } + public V1GlusterfsPersistentVolumeSource Glusterfs { get; set; } /// /// Gets or sets hostPath represents a directory on the host. @@ -392,8 +392,8 @@ namespace k8s.Models /// /// Gets or sets volumeMode defines if a volume is intended to be used /// with a formatted filesystem or to remain in raw block state. Value - /// of Filesystem is implied when not included in spec. This is an - /// alpha feature and may change in the future. + /// of Filesystem is implied when not included in spec. This is a beta + /// feature. /// [JsonProperty(PropertyName = "volumeMode")] public string VolumeMode { get; set; } diff --git a/src/KubernetesClient/generated/Models/V1PodSpec.cs b/src/KubernetesClient/generated/Models/V1PodSpec.cs index b257c1d..3ea1be2 100644 --- a/src/KubernetesClient/generated/Models/V1PodSpec.cs +++ b/src/KubernetesClient/generated/Models/V1PodSpec.cs @@ -50,6 +50,9 @@ namespace k8s.Models /// DNSConfig will be merged with the policy selected with DNSPolicy. /// To have DNS options set along with hostNetwork, you have to specify /// DNS policy explicitly to 'ClusterFirstWithHostNet'. + /// EnableServiceLinks indicates + /// whether information about services should be injected into pod's + /// environment variables, matching the syntax of Docker links. /// HostAliases is an optional list of hosts /// and IPs that will be injected into the pod's hosts file if /// specified. This is only valid for non-hostNetwork pods. @@ -161,7 +164,7 @@ namespace k8s.Models /// List of volumes that can be mounted by /// containers belonging to the pod. More info: /// https://kubernetes.io/docs/concepts/storage/volumes - public V1PodSpec(IList containers, long? activeDeadlineSeconds = default(long?), V1Affinity affinity = default(V1Affinity), bool? automountServiceAccountToken = default(bool?), V1PodDNSConfig dnsConfig = default(V1PodDNSConfig), string dnsPolicy = default(string), IList hostAliases = default(IList), bool? hostIPC = default(bool?), bool? hostNetwork = default(bool?), bool? hostPID = default(bool?), string hostname = default(string), IList imagePullSecrets = default(IList), IList initContainers = default(IList), string nodeName = default(string), IDictionary nodeSelector = default(IDictionary), int? priority = default(int?), string priorityClassName = default(string), IList readinessGates = default(IList), string restartPolicy = default(string), string runtimeClassName = default(string), string schedulerName = default(string), V1PodSecurityContext securityContext = default(V1PodSecurityContext), string serviceAccount = default(string), string serviceAccountName = default(string), bool? shareProcessNamespace = default(bool?), string subdomain = default(string), long? terminationGracePeriodSeconds = default(long?), IList tolerations = default(IList), IList volumes = default(IList)) + public V1PodSpec(IList containers, long? activeDeadlineSeconds = default(long?), V1Affinity affinity = default(V1Affinity), bool? automountServiceAccountToken = default(bool?), V1PodDNSConfig dnsConfig = default(V1PodDNSConfig), string dnsPolicy = default(string), bool? enableServiceLinks = default(bool?), IList hostAliases = default(IList), bool? hostIPC = default(bool?), bool? hostNetwork = default(bool?), bool? hostPID = default(bool?), string hostname = default(string), IList imagePullSecrets = default(IList), IList initContainers = default(IList), string nodeName = default(string), IDictionary nodeSelector = default(IDictionary), int? priority = default(int?), string priorityClassName = default(string), IList readinessGates = default(IList), string restartPolicy = default(string), string runtimeClassName = default(string), string schedulerName = default(string), V1PodSecurityContext securityContext = default(V1PodSecurityContext), string serviceAccount = default(string), string serviceAccountName = default(string), bool? shareProcessNamespace = default(bool?), string subdomain = default(string), long? terminationGracePeriodSeconds = default(long?), IList tolerations = default(IList), IList volumes = default(IList)) { ActiveDeadlineSeconds = activeDeadlineSeconds; Affinity = affinity; @@ -169,6 +172,7 @@ namespace k8s.Models Containers = containers; DnsConfig = dnsConfig; DnsPolicy = dnsPolicy; + EnableServiceLinks = enableServiceLinks; HostAliases = hostAliases; HostIPC = hostIPC; HostNetwork = hostNetwork; @@ -249,6 +253,14 @@ namespace k8s.Models [JsonProperty(PropertyName = "dnsPolicy")] public string DnsPolicy { get; set; } + /// + /// Gets or sets enableServiceLinks indicates whether information about + /// services should be injected into pod's environment variables, + /// matching the syntax of Docker links. + /// + [JsonProperty(PropertyName = "enableServiceLinks")] + public bool? EnableServiceLinks { get; set; } + /// /// Gets or sets hostAliases is an optional list of hosts and IPs that /// will be injected into the pod's hosts file if specified. This is diff --git a/src/KubernetesClient/generated/Models/V1TokenReviewSpec.cs b/src/KubernetesClient/generated/Models/V1TokenReviewSpec.cs index 0843506..c737566 100644 --- a/src/KubernetesClient/generated/Models/V1TokenReviewSpec.cs +++ b/src/KubernetesClient/generated/Models/V1TokenReviewSpec.cs @@ -7,6 +7,8 @@ namespace k8s.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -25,9 +27,16 @@ namespace k8s.Models /// /// Initializes a new instance of the V1TokenReviewSpec class. /// + /// Audiences is a list of the identifiers that + /// the resource server presented with the token identifies as. + /// Audience-aware token authenticators will verify that the token was + /// intended for at least one of the audiences in this list. If no + /// audiences are provided, the audience will default to the audience + /// of the Kubernetes apiserver. /// Token is the opaque bearer token. - public V1TokenReviewSpec(string token = default(string)) + public V1TokenReviewSpec(IList audiences = default(IList), string token = default(string)) { + Audiences = audiences; Token = token; CustomInit(); } @@ -37,6 +46,17 @@ namespace k8s.Models /// partial void CustomInit(); + /// + /// Gets or sets audiences is a list of the identifiers that the + /// resource server presented with the token identifies as. + /// Audience-aware token authenticators will verify that the token was + /// intended for at least one of the audiences in this list. If no + /// audiences are provided, the audience will default to the audience + /// of the Kubernetes apiserver. + /// + [JsonProperty(PropertyName = "audiences")] + public IList Audiences { get; set; } + /// /// Gets or sets token is the opaque bearer token. /// diff --git a/src/KubernetesClient/generated/Models/V1TokenReviewStatus.cs b/src/KubernetesClient/generated/Models/V1TokenReviewStatus.cs index f75a336..57a83da 100644 --- a/src/KubernetesClient/generated/Models/V1TokenReviewStatus.cs +++ b/src/KubernetesClient/generated/Models/V1TokenReviewStatus.cs @@ -7,6 +7,8 @@ namespace k8s.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -25,14 +27,25 @@ namespace k8s.Models /// /// Initializes a new instance of the V1TokenReviewStatus class. /// + /// Audiences are audience identifiers chosen + /// by the authenticator that are compatible with both the TokenReview + /// and token. An identifier is any identifier in the intersection of + /// the TokenReviewSpec audiences and the token's audiences. A client + /// of the TokenReview API that sets the spec.audiences field should + /// validate that a compatible audience identifier is returned in the + /// status.audiences field to ensure that the TokenReview server is + /// audience aware. If a TokenReview returns an empty status.audience + /// field where status.authenticated is "true", the token is valid + /// against the audience of the Kubernetes API server. /// Authenticated indicates that the token /// was associated with a known user. /// Error indicates that the token couldn't be /// checked /// User is the UserInfo associated with the /// provided token. - public V1TokenReviewStatus(bool? authenticated = default(bool?), string error = default(string), V1UserInfo user = default(V1UserInfo)) + public V1TokenReviewStatus(IList audiences = default(IList), bool? authenticated = default(bool?), string error = default(string), V1UserInfo user = default(V1UserInfo)) { + Audiences = audiences; Authenticated = authenticated; Error = error; User = user; @@ -44,6 +57,21 @@ namespace k8s.Models /// partial void CustomInit(); + /// + /// Gets or sets audiences are audience identifiers chosen by the + /// authenticator that are compatible with both the TokenReview and + /// token. An identifier is any identifier in the intersection of the + /// TokenReviewSpec audiences and the token's audiences. A client of + /// the TokenReview API that sets the spec.audiences field should + /// validate that a compatible audience identifier is returned in the + /// status.audiences field to ensure that the TokenReview server is + /// audience aware. If a TokenReview returns an empty status.audience + /// field where status.authenticated is "true", the token is valid + /// against the audience of the Kubernetes API server. + /// + [JsonProperty(PropertyName = "audiences")] + public IList Audiences { get; set; } + /// /// Gets or sets authenticated indicates that the token was associated /// with a known user. diff --git a/src/KubernetesClient/generated/Models/V1VolumeAttachment.cs b/src/KubernetesClient/generated/Models/V1VolumeAttachment.cs new file mode 100644 index 0000000..2cd2aca --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1VolumeAttachment.cs @@ -0,0 +1,132 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// VolumeAttachment captures the intent to attach or detach the specified + /// volume to/from the specified node. + /// + /// VolumeAttachment objects are non-namespaced. + /// + public partial class V1VolumeAttachment + { + /// + /// Initializes a new instance of the V1VolumeAttachment class. + /// + public V1VolumeAttachment() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1VolumeAttachment class. + /// + /// Specification of the desired attach/detach + /// volume behavior. Populated by the Kubernetes system. + /// APIVersion defines the versioned schema of + /// this representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// Kind is a string value representing the REST + /// resource this object represents. Servers may infer this from the + /// endpoint the client submits requests to. Cannot be updated. In + /// CamelCase. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// Standard object metadata. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + /// Status of the VolumeAttachment request. + /// Populated by the entity completing the attach or detach operation, + /// i.e. the external-attacher. + public V1VolumeAttachment(V1VolumeAttachmentSpec spec, string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), V1VolumeAttachmentStatus status = default(V1VolumeAttachmentStatus)) + { + ApiVersion = apiVersion; + Kind = kind; + Metadata = metadata; + Spec = spec; + Status = status; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets aPIVersion defines the versioned schema of this + /// representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// + [JsonProperty(PropertyName = "apiVersion")] + public string ApiVersion { get; set; } + + /// + /// Gets or sets kind is a string value representing the REST resource + /// this object represents. Servers may infer this from the endpoint + /// the client submits requests to. Cannot be updated. In CamelCase. + /// More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + /// + /// Gets or sets standard object metadata. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + /// + [JsonProperty(PropertyName = "metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Gets or sets specification of the desired attach/detach volume + /// behavior. Populated by the Kubernetes system. + /// + [JsonProperty(PropertyName = "spec")] + public V1VolumeAttachmentSpec Spec { get; set; } + + /// + /// Gets or sets status of the VolumeAttachment request. Populated by + /// the entity completing the attach or detach operation, i.e. the + /// external-attacher. + /// + [JsonProperty(PropertyName = "status")] + public V1VolumeAttachmentStatus Status { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Spec == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Spec"); + } + if (Metadata != null) + { + Metadata.Validate(); + } + if (Spec != null) + { + Spec.Validate(); + } + if (Status != null) + { + Status.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1VolumeAttachmentList.cs b/src/KubernetesClient/generated/Models/V1VolumeAttachmentList.cs new file mode 100644 index 0000000..44c6166 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1VolumeAttachmentList.cs @@ -0,0 +1,115 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// VolumeAttachmentList is a collection of VolumeAttachment objects. + /// + public partial class V1VolumeAttachmentList + { + /// + /// Initializes a new instance of the V1VolumeAttachmentList class. + /// + public V1VolumeAttachmentList() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1VolumeAttachmentList class. + /// + /// Items is the list of VolumeAttachments + /// APIVersion defines the versioned schema of + /// this representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// Kind is a string value representing the REST + /// resource this object represents. Servers may infer this from the + /// endpoint the client submits requests to. Cannot be updated. In + /// CamelCase. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// Standard list metadata More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + public V1VolumeAttachmentList(IList items, string apiVersion = default(string), string kind = default(string), V1ListMeta metadata = default(V1ListMeta)) + { + ApiVersion = apiVersion; + Items = items; + Kind = kind; + Metadata = metadata; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets aPIVersion defines the versioned schema of this + /// representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// + [JsonProperty(PropertyName = "apiVersion")] + public string ApiVersion { get; set; } + + /// + /// Gets or sets items is the list of VolumeAttachments + /// + [JsonProperty(PropertyName = "items")] + public IList Items { get; set; } + + /// + /// Gets or sets kind is a string value representing the REST resource + /// this object represents. Servers may infer this from the endpoint + /// the client submits requests to. Cannot be updated. In CamelCase. + /// More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + /// + /// Gets or sets standard list metadata More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata + /// + [JsonProperty(PropertyName = "metadata")] + public V1ListMeta Metadata { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Items == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Items"); + } + if (Items != null) + { + foreach (var element in Items) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1VolumeAttachmentSource.cs b/src/KubernetesClient/generated/Models/V1VolumeAttachmentSource.cs new file mode 100644 index 0000000..c245e93 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1VolumeAttachmentSource.cs @@ -0,0 +1,51 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// VolumeAttachmentSource represents a volume that should be attached. + /// Right now only PersistenVolumes can be attached via external attacher, + /// in future we may allow also inline volumes in pods. Exactly one member + /// can be set. + /// + public partial class V1VolumeAttachmentSource + { + /// + /// Initializes a new instance of the V1VolumeAttachmentSource class. + /// + public V1VolumeAttachmentSource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1VolumeAttachmentSource class. + /// + /// Name of the persistent volume to + /// attach. + public V1VolumeAttachmentSource(string persistentVolumeName = default(string)) + { + PersistentVolumeName = persistentVolumeName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets name of the persistent volume to attach. + /// + [JsonProperty(PropertyName = "persistentVolumeName")] + public string PersistentVolumeName { get; set; } + + } +} diff --git a/src/KubernetesClient/generated/Models/V1VolumeAttachmentSpec.cs b/src/KubernetesClient/generated/Models/V1VolumeAttachmentSpec.cs new file mode 100644 index 0000000..e55e35e --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1VolumeAttachmentSpec.cs @@ -0,0 +1,92 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// VolumeAttachmentSpec is the specification of a VolumeAttachment + /// request. + /// + public partial class V1VolumeAttachmentSpec + { + /// + /// Initializes a new instance of the V1VolumeAttachmentSpec class. + /// + public V1VolumeAttachmentSpec() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1VolumeAttachmentSpec class. + /// + /// Attacher indicates the name of the volume + /// driver that MUST handle this request. This is the name returned by + /// GetPluginName(). + /// The node that the volume should be attached + /// to. + /// Source represents the volume that should be + /// attached. + public V1VolumeAttachmentSpec(string attacher, string nodeName, V1VolumeAttachmentSource source) + { + Attacher = attacher; + NodeName = nodeName; + Source = source; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets attacher indicates the name of the volume driver that + /// MUST handle this request. This is the name returned by + /// GetPluginName(). + /// + [JsonProperty(PropertyName = "attacher")] + public string Attacher { get; set; } + + /// + /// Gets or sets the node that the volume should be attached to. + /// + [JsonProperty(PropertyName = "nodeName")] + public string NodeName { get; set; } + + /// + /// Gets or sets source represents the volume that should be attached. + /// + [JsonProperty(PropertyName = "source")] + public V1VolumeAttachmentSource Source { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Attacher == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Attacher"); + } + if (NodeName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "NodeName"); + } + if (Source == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Source"); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1VolumeAttachmentStatus.cs b/src/KubernetesClient/generated/Models/V1VolumeAttachmentStatus.cs new file mode 100644 index 0000000..b5dc25a --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1VolumeAttachmentStatus.cs @@ -0,0 +1,104 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// VolumeAttachmentStatus is the status of a VolumeAttachment request. + /// + public partial class V1VolumeAttachmentStatus + { + /// + /// Initializes a new instance of the V1VolumeAttachmentStatus class. + /// + public V1VolumeAttachmentStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1VolumeAttachmentStatus class. + /// + /// Indicates the volume is successfully + /// attached. This field must only be set by the entity completing the + /// attach operation, i.e. the external-attacher. + /// The last error encountered during attach + /// operation, if any. This field must only be set by the entity + /// completing the attach operation, i.e. the + /// external-attacher. + /// Upon successful attach, this field + /// is populated with any information returned by the attach operation + /// that must be passed into subsequent WaitForAttach or Mount calls. + /// This field must only be set by the entity completing the attach + /// operation, i.e. the external-attacher. + /// The last error encountered during detach + /// operation, if any. This field must only be set by the entity + /// completing the detach operation, i.e. the + /// external-attacher. + public V1VolumeAttachmentStatus(bool attached, V1VolumeError attachError = default(V1VolumeError), IDictionary attachmentMetadata = default(IDictionary), V1VolumeError detachError = default(V1VolumeError)) + { + AttachError = attachError; + Attached = attached; + AttachmentMetadata = attachmentMetadata; + DetachError = detachError; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the last error encountered during attach operation, if + /// any. This field must only be set by the entity completing the + /// attach operation, i.e. the external-attacher. + /// + [JsonProperty(PropertyName = "attachError")] + public V1VolumeError AttachError { get; set; } + + /// + /// Gets or sets indicates the volume is successfully attached. This + /// field must only be set by the entity completing the attach + /// operation, i.e. the external-attacher. + /// + [JsonProperty(PropertyName = "attached")] + public bool Attached { get; set; } + + /// + /// Gets or sets upon successful attach, this field is populated with + /// any information returned by the attach operation that must be + /// passed into subsequent WaitForAttach or Mount calls. This field + /// must only be set by the entity completing the attach operation, + /// i.e. the external-attacher. + /// + [JsonProperty(PropertyName = "attachmentMetadata")] + public IDictionary AttachmentMetadata { get; set; } + + /// + /// Gets or sets the last error encountered during detach operation, if + /// any. This field must only be set by the entity completing the + /// detach operation, i.e. the external-attacher. + /// + [JsonProperty(PropertyName = "detachError")] + public V1VolumeError DetachError { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1VolumeError.cs b/src/KubernetesClient/generated/Models/V1VolumeError.cs new file mode 100644 index 0000000..09f2ac2 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1VolumeError.cs @@ -0,0 +1,59 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// VolumeError captures an error encountered during a volume operation. + /// + public partial class V1VolumeError + { + /// + /// Initializes a new instance of the V1VolumeError class. + /// + public V1VolumeError() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1VolumeError class. + /// + /// String detailing the error encountered during + /// Attach or Detach operation. This string maybe logged, so it should + /// not contain sensitive information. + /// Time the error was encountered. + public V1VolumeError(string message = default(string), System.DateTime? time = default(System.DateTime?)) + { + Message = message; + Time = time; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets string detailing the error encountered during Attach + /// or Detach operation. This string maybe logged, so it should not + /// contain sensitive information. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + /// + /// Gets or sets time the error was encountered. + /// + [JsonProperty(PropertyName = "time")] + public System.DateTime? Time { get; set; } + + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1AuditSink.cs b/src/KubernetesClient/generated/Models/V1alpha1AuditSink.cs new file mode 100644 index 0000000..6374da3 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1AuditSink.cs @@ -0,0 +1,103 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// AuditSink represents a cluster level audit sink + /// + public partial class V1alpha1AuditSink + { + /// + /// Initializes a new instance of the V1alpha1AuditSink class. + /// + public V1alpha1AuditSink() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1AuditSink class. + /// + /// APIVersion defines the versioned schema of + /// this representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// Kind is a string value representing the REST + /// resource this object represents. Servers may infer this from the + /// endpoint the client submits requests to. Cannot be updated. In + /// CamelCase. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// Spec defines the audit configuration + /// spec + public V1alpha1AuditSink(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), V1alpha1AuditSinkSpec spec = default(V1alpha1AuditSinkSpec)) + { + ApiVersion = apiVersion; + Kind = kind; + Metadata = metadata; + Spec = spec; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets aPIVersion defines the versioned schema of this + /// representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// + [JsonProperty(PropertyName = "apiVersion")] + public string ApiVersion { get; set; } + + /// + /// Gets or sets kind is a string value representing the REST resource + /// this object represents. Servers may infer this from the endpoint + /// the client submits requests to. Cannot be updated. In CamelCase. + /// More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + /// + /// + [JsonProperty(PropertyName = "metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Gets or sets spec defines the audit configuration spec + /// + [JsonProperty(PropertyName = "spec")] + public V1alpha1AuditSinkSpec Spec { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Metadata != null) + { + Metadata.Validate(); + } + if (Spec != null) + { + Spec.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1AuditSinkList.cs b/src/KubernetesClient/generated/Models/V1alpha1AuditSinkList.cs new file mode 100644 index 0000000..5719ffb --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1AuditSinkList.cs @@ -0,0 +1,111 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// AuditSinkList is a list of AuditSink items. + /// + public partial class V1alpha1AuditSinkList + { + /// + /// Initializes a new instance of the V1alpha1AuditSinkList class. + /// + public V1alpha1AuditSinkList() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1AuditSinkList class. + /// + /// List of audit configurations. + /// APIVersion defines the versioned schema of + /// this representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// Kind is a string value representing the REST + /// resource this object represents. Servers may infer this from the + /// endpoint the client submits requests to. Cannot be updated. In + /// CamelCase. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + public V1alpha1AuditSinkList(IList items, string apiVersion = default(string), string kind = default(string), V1ListMeta metadata = default(V1ListMeta)) + { + ApiVersion = apiVersion; + Items = items; + Kind = kind; + Metadata = metadata; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets aPIVersion defines the versioned schema of this + /// representation of an object. Servers should convert recognized + /// schemas to the latest internal value, and may reject unrecognized + /// values. More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources + /// + [JsonProperty(PropertyName = "apiVersion")] + public string ApiVersion { get; set; } + + /// + /// Gets or sets list of audit configurations. + /// + [JsonProperty(PropertyName = "items")] + public IList Items { get; set; } + + /// + /// Gets or sets kind is a string value representing the REST resource + /// this object represents. Servers may infer this from the endpoint + /// the client submits requests to. Cannot be updated. In CamelCase. + /// More info: + /// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + /// + /// + [JsonProperty(PropertyName = "metadata")] + public V1ListMeta Metadata { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Items == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Items"); + } + if (Items != null) + { + foreach (var element in Items) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1AuditSinkSpec.cs b/src/KubernetesClient/generated/Models/V1alpha1AuditSinkSpec.cs new file mode 100644 index 0000000..b4be4ff --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1AuditSinkSpec.cs @@ -0,0 +1,83 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// AuditSinkSpec holds the spec for the audit sink + /// + public partial class V1alpha1AuditSinkSpec + { + /// + /// Initializes a new instance of the V1alpha1AuditSinkSpec class. + /// + public V1alpha1AuditSinkSpec() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1AuditSinkSpec class. + /// + /// Policy defines the policy for selecting which + /// events should be sent to the webhook required + /// Webhook to send events required + public V1alpha1AuditSinkSpec(V1alpha1Policy policy, V1alpha1Webhook webhook) + { + Policy = policy; + Webhook = webhook; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets policy defines the policy for selecting which events + /// should be sent to the webhook required + /// + [JsonProperty(PropertyName = "policy")] + public V1alpha1Policy Policy { get; set; } + + /// + /// Gets or sets webhook to send events required + /// + [JsonProperty(PropertyName = "webhook")] + public V1alpha1Webhook Webhook { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Policy == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Policy"); + } + if (Webhook == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Webhook"); + } + if (Policy != null) + { + Policy.Validate(); + } + if (Webhook != null) + { + Webhook.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1Policy.cs b/src/KubernetesClient/generated/Models/V1alpha1Policy.cs new file mode 100644 index 0000000..45c8213 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1Policy.cs @@ -0,0 +1,76 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Policy defines the configuration of how audit events are logged + /// + public partial class V1alpha1Policy + { + /// + /// Initializes a new instance of the V1alpha1Policy class. + /// + public V1alpha1Policy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1Policy class. + /// + /// The Level that all requests are recorded at. + /// available options: None, Metadata, Request, RequestResponse + /// required + /// Stages is a list of stages for which events + /// are created. + public V1alpha1Policy(string level, IList stages = default(IList)) + { + Level = level; + Stages = stages; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Level that all requests are recorded at. available + /// options: None, Metadata, Request, RequestResponse required + /// + [JsonProperty(PropertyName = "level")] + public string Level { get; set; } + + /// + /// Gets or sets stages is a list of stages for which events are + /// created. + /// + [JsonProperty(PropertyName = "stages")] + public IList Stages { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Level == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Level"); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1ServiceReference.cs b/src/KubernetesClient/generated/Models/V1alpha1ServiceReference.cs new file mode 100644 index 0000000..6ce13d8 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1ServiceReference.cs @@ -0,0 +1,85 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// ServiceReference holds a reference to Service.legacy.k8s.io + /// + public partial class V1alpha1ServiceReference + { + /// + /// Initializes a new instance of the V1alpha1ServiceReference class. + /// + public V1alpha1ServiceReference() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1ServiceReference class. + /// + /// `name` is the name of the service. + /// Required + /// `namespace` is the namespace of the + /// service. Required + /// `path` is an optional URL path which will be + /// sent in any request to this service. + public V1alpha1ServiceReference(string name, string namespaceProperty, string path = default(string)) + { + Name = name; + NamespaceProperty = namespaceProperty; + Path = path; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets `name` is the name of the service. Required + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets `namespace` is the namespace of the service. Required + /// + [JsonProperty(PropertyName = "namespace")] + public string NamespaceProperty { get; set; } + + /// + /// Gets or sets `path` is an optional URL path which will be sent in + /// any request to this service. + /// + [JsonProperty(PropertyName = "path")] + public string Path { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (NamespaceProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "NamespaceProperty"); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1Webhook.cs b/src/KubernetesClient/generated/Models/V1alpha1Webhook.cs new file mode 100644 index 0000000..8d9c8cc --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1Webhook.cs @@ -0,0 +1,76 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Webhook holds the configuration of the webhook + /// + public partial class V1alpha1Webhook + { + /// + /// Initializes a new instance of the V1alpha1Webhook class. + /// + public V1alpha1Webhook() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1Webhook class. + /// + /// ClientConfig holds the connection + /// parameters for the webhook required + /// Throttle holds the options for throttling + /// the webhook + public V1alpha1Webhook(V1alpha1WebhookClientConfig clientConfig, V1alpha1WebhookThrottleConfig throttle = default(V1alpha1WebhookThrottleConfig)) + { + ClientConfig = clientConfig; + Throttle = throttle; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets clientConfig holds the connection parameters for the + /// webhook required + /// + [JsonProperty(PropertyName = "clientConfig")] + public V1alpha1WebhookClientConfig ClientConfig { get; set; } + + /// + /// Gets or sets throttle holds the options for throttling the webhook + /// + [JsonProperty(PropertyName = "throttle")] + public V1alpha1WebhookThrottleConfig Throttle { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ClientConfig == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ClientConfig"); + } + if (ClientConfig != null) + { + ClientConfig.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1WebhookClientConfig.cs b/src/KubernetesClient/generated/Models/V1alpha1WebhookClientConfig.cs new file mode 100644 index 0000000..bf304c8 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1WebhookClientConfig.cs @@ -0,0 +1,144 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// WebhookClientConfig contains the information to make a connection with + /// the webhook + /// + public partial class V1alpha1WebhookClientConfig + { + /// + /// Initializes a new instance of the V1alpha1WebhookClientConfig + /// class. + /// + public V1alpha1WebhookClientConfig() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1WebhookClientConfig + /// class. + /// + /// `caBundle` is a PEM encoded CA bundle which + /// will be used to validate the webhook's server certificate. If + /// unspecified, system trust roots on the apiserver are used. + /// `service` is a reference to the service for + /// this webhook. Either `service` or `url` must be specified. + /// + /// If the webhook is running within the cluster, then you should use + /// `service`. + /// + /// Port 443 will be used if it is open, otherwise it is an + /// error. + /// `url` gives the location of the webhook, in + /// standard URL form (`scheme://host:port/path`). Exactly one of `url` + /// or `service` must be specified. + /// + /// The `host` should not refer to a service running in the cluster; + /// use the `service` field instead. The host might be resolved via + /// external DNS in some apiservers (e.g., `kube-apiserver` cannot + /// resolve in-cluster DNS as that would be a layering violation). + /// `host` may also be an IP address. + /// + /// Please note that using `localhost` or `127.0.0.1` as a `host` is + /// risky unless you take great care to run this webhook on all hosts + /// which run an apiserver which might need to make calls to this + /// webhook. Such installs are likely to be non-portable, i.e., not + /// easy to turn up in a new cluster. + /// + /// The scheme must be "https"; the URL must begin with "https://". + /// + /// A path is optional, and if present may be any string permissible in + /// a URL. You may use the path to pass an arbitrary string to the + /// webhook, for example, a cluster identifier. + /// + /// Attempting to use a user or basic auth e.g. "user:password@" is not + /// allowed. Fragments ("#...") and query parameters ("?...") are not + /// allowed, either. + public V1alpha1WebhookClientConfig(byte[] caBundle = default(byte[]), V1alpha1ServiceReference service = default(V1alpha1ServiceReference), string url = default(string)) + { + CaBundle = caBundle; + Service = service; + Url = url; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets `caBundle` is a PEM encoded CA bundle which will be + /// used to validate the webhook's server certificate. If unspecified, + /// system trust roots on the apiserver are used. + /// + [JsonProperty(PropertyName = "caBundle")] + public byte[] CaBundle { get; set; } + + /// + /// Gets or sets `service` is a reference to the service for this + /// webhook. Either `service` or `url` must be specified. + /// + /// If the webhook is running within the cluster, then you should use + /// `service`. + /// + /// Port 443 will be used if it is open, otherwise it is an error. + /// + [JsonProperty(PropertyName = "service")] + public V1alpha1ServiceReference Service { get; set; } + + /// + /// Gets or sets `url` gives the location of the webhook, in standard + /// URL form (`scheme://host:port/path`). Exactly one of `url` or + /// `service` must be specified. + /// + /// The `host` should not refer to a service running in the cluster; + /// use the `service` field instead. The host might be resolved via + /// external DNS in some apiservers (e.g., `kube-apiserver` cannot + /// resolve in-cluster DNS as that would be a layering violation). + /// `host` may also be an IP address. + /// + /// Please note that using `localhost` or `127.0.0.1` as a `host` is + /// risky unless you take great care to run this webhook on all hosts + /// which run an apiserver which might need to make calls to this + /// webhook. Such installs are likely to be non-portable, i.e., not + /// easy to turn up in a new cluster. + /// + /// The scheme must be "https"; the URL must begin with "https://". + /// + /// A path is optional, and if present may be any string permissible in + /// a URL. You may use the path to pass an arbitrary string to the + /// webhook, for example, a cluster identifier. + /// + /// Attempting to use a user or basic auth e.g. "user:password@" is not + /// allowed. Fragments ("#...") and query parameters ("?...") are not + /// allowed, either. + /// + [JsonProperty(PropertyName = "url")] + public string Url { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Service != null) + { + Service.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1alpha1WebhookThrottleConfig.cs b/src/KubernetesClient/generated/Models/V1alpha1WebhookThrottleConfig.cs new file mode 100644 index 0000000..5af7a7f --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1alpha1WebhookThrottleConfig.cs @@ -0,0 +1,61 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// WebhookThrottleConfig holds the configuration for throttling events + /// + public partial class V1alpha1WebhookThrottleConfig + { + /// + /// Initializes a new instance of the V1alpha1WebhookThrottleConfig + /// class. + /// + public V1alpha1WebhookThrottleConfig() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1alpha1WebhookThrottleConfig + /// class. + /// + /// ThrottleBurst is the maximum number of events + /// sent at the same moment default 15 QPS + /// ThrottleQPS maximum number of batches per second + /// default 10 QPS + public V1alpha1WebhookThrottleConfig(long? burst = default(long?), long? qps = default(long?)) + { + Burst = burst; + Qps = qps; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets throttleBurst is the maximum number of events sent at + /// the same moment default 15 QPS + /// + [JsonProperty(PropertyName = "burst")] + public long? Burst { get; set; } + + /// + /// Gets or sets throttleQPS maximum number of batches per second + /// default 10 QPS + /// + [JsonProperty(PropertyName = "qps")] + public long? Qps { get; set; } + + } +} diff --git a/src/KubernetesClient/generated/Models/V1beta1APIServiceSpec.cs b/src/KubernetesClient/generated/Models/V1beta1APIServiceSpec.cs index 8a3025e..d1e59ea 100644 --- a/src/KubernetesClient/generated/Models/V1beta1APIServiceSpec.cs +++ b/src/KubernetesClient/generated/Models/V1beta1APIServiceSpec.cs @@ -61,8 +61,8 @@ namespace k8s.Models /// of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, /// v11alpha2, foo1, foo10. /// CABundle is a PEM encoded CA bundle which - /// will be used to validate an API server's serving - /// certificate. + /// will be used to validate an API server's serving certificate. If + /// unspecified, system trust roots on the apiserver are used. /// Group is the API group name this server /// hosts /// InsecureSkipTLSVerify disables @@ -90,7 +90,8 @@ namespace k8s.Models /// /// Gets or sets cABundle is a PEM encoded CA bundle which will be used - /// to validate an API server's serving certificate. + /// to validate an API server's serving certificate. If unspecified, + /// system trust roots on the apiserver are used. /// [JsonProperty(PropertyName = "caBundle")] public byte[] CaBundle { get; set; } diff --git a/src/KubernetesClient/generated/Models/V1beta1CustomResourceConversion.cs b/src/KubernetesClient/generated/Models/V1beta1CustomResourceConversion.cs new file mode 100644 index 0000000..3c86023 --- /dev/null +++ b/src/KubernetesClient/generated/Models/V1beta1CustomResourceConversion.cs @@ -0,0 +1,91 @@ +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace k8s.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// CustomResourceConversion describes how to convert different versions of + /// a CR. + /// + public partial class V1beta1CustomResourceConversion + { + /// + /// Initializes a new instance of the V1beta1CustomResourceConversion + /// class. + /// + public V1beta1CustomResourceConversion() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1beta1CustomResourceConversion + /// class. + /// + /// `strategy` specifies the conversion + /// strategy. Allowed values are: - `None`: The converter only change + /// the apiVersion and would not touch any other field in the CR. - + /// `Webhook`: API Server will call to an external webhook to do the + /// conversion. Additional information is needed for this + /// option. + /// `webhookClientConfig` is the + /// instructions for how to call the webhook if strategy is `Webhook`. + /// This field is alpha-level and is only honored by servers that + /// enable the CustomResourceWebhookConversion feature. + public V1beta1CustomResourceConversion(string strategy, Apiextensionsv1beta1WebhookClientConfig webhookClientConfig = default(Apiextensionsv1beta1WebhookClientConfig)) + { + Strategy = strategy; + WebhookClientConfig = webhookClientConfig; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets `strategy` specifies the conversion strategy. Allowed + /// values are: - `None`: The converter only change the apiVersion and + /// would not touch any other field in the CR. - `Webhook`: API Server + /// will call to an external webhook to do the conversion. Additional + /// information is needed for this option. + /// + [JsonProperty(PropertyName = "strategy")] + public string Strategy { get; set; } + + /// + /// Gets or sets `webhookClientConfig` is the instructions for how to + /// call the webhook if strategy is `Webhook`. This field is + /// alpha-level and is only honored by servers that enable the + /// CustomResourceWebhookConversion feature. + /// + [JsonProperty(PropertyName = "webhookClientConfig")] + public Apiextensionsv1beta1WebhookClientConfig WebhookClientConfig { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Strategy == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Strategy"); + } + if (WebhookClientConfig != null) + { + WebhookClientConfig.Validate(); + } + } + } +} diff --git a/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionSpec.cs b/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionSpec.cs index 546f966..1e80ab0 100644 --- a/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionSpec.cs +++ b/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionSpec.cs @@ -39,11 +39,19 @@ namespace k8s.Models /// cluster or namespace scoped. Default is namespaced /// AdditionalPrinterColumns are /// additional columns shown e.g. in kubectl next to the name. Defaults - /// to a created-at column. + /// to a created-at column. Optional, the global columns for all + /// versions. Top-level and per-version columns are mutually + /// exclusive. + /// `conversion` defines conversion settings + /// for the CRD. /// Subresources describes the subresources - /// for CustomResources + /// for CustomResource Optional, the global subresources for all + /// versions. Top-level and per-version subresources are mutually + /// exclusive. /// Validation describes the validation - /// methods for CustomResources + /// methods for CustomResources Optional, the global validation schema + /// for all versions. Top-level and per-version schemas are mutually + /// exclusive. /// Version is the version this resource belongs /// in Should be always first item in Versions field if provided. /// Optional, but at least one of Version or Versions must be set. @@ -63,9 +71,10 @@ namespace k8s.Models /// comparing major version, then minor version. An example sorted list /// of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, /// v11alpha2, foo1, foo10. - public V1beta1CustomResourceDefinitionSpec(string group, V1beta1CustomResourceDefinitionNames names, string scope, IList additionalPrinterColumns = default(IList), V1beta1CustomResourceSubresources subresources = default(V1beta1CustomResourceSubresources), V1beta1CustomResourceValidation validation = default(V1beta1CustomResourceValidation), string version = default(string), IList versions = default(IList)) + public V1beta1CustomResourceDefinitionSpec(string group, V1beta1CustomResourceDefinitionNames names, string scope, IList additionalPrinterColumns = default(IList), V1beta1CustomResourceConversion conversion = default(V1beta1CustomResourceConversion), V1beta1CustomResourceSubresources subresources = default(V1beta1CustomResourceSubresources), V1beta1CustomResourceValidation validation = default(V1beta1CustomResourceValidation), string version = default(string), IList versions = default(IList)) { AdditionalPrinterColumns = additionalPrinterColumns; + Conversion = conversion; Group = group; Names = names; Scope = scope; @@ -84,10 +93,18 @@ namespace k8s.Models /// /// Gets or sets additionalPrinterColumns are additional columns shown /// e.g. in kubectl next to the name. Defaults to a created-at column. + /// Optional, the global columns for all versions. Top-level and + /// per-version columns are mutually exclusive. /// [JsonProperty(PropertyName = "additionalPrinterColumns")] public IList AdditionalPrinterColumns { get; set; } + /// + /// Gets or sets `conversion` defines conversion settings for the CRD. + /// + [JsonProperty(PropertyName = "conversion")] + public V1beta1CustomResourceConversion Conversion { get; set; } + /// /// Gets or sets group is the group this resource belongs in /// @@ -110,14 +127,16 @@ namespace k8s.Models /// /// Gets or sets subresources describes the subresources for - /// CustomResources + /// CustomResource Optional, the global subresources for all versions. + /// Top-level and per-version subresources are mutually exclusive. /// [JsonProperty(PropertyName = "subresources")] public V1beta1CustomResourceSubresources Subresources { get; set; } /// /// Gets or sets validation describes the validation methods for - /// CustomResources + /// CustomResources Optional, the global validation schema for all + /// versions. Top-level and per-version schemas are mutually exclusive. /// [JsonProperty(PropertyName = "validation")] public V1beta1CustomResourceValidation Validation { get; set; } @@ -181,6 +200,10 @@ namespace k8s.Models } } } + if (Conversion != null) + { + Conversion.Validate(); + } if (Names != null) { Names.Validate(); diff --git a/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionVersion.cs b/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionVersion.cs index 6fe2181..a47467a 100644 --- a/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionVersion.cs +++ b/src/KubernetesClient/generated/Models/V1beta1CustomResourceDefinitionVersion.cs @@ -8,8 +8,13 @@ namespace k8s.Models { using Microsoft.Rest; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; + /// + /// CustomResourceDefinitionVersion describes a version for CRD. + /// public partial class V1beta1CustomResourceDefinitionVersion { /// @@ -31,11 +36,38 @@ namespace k8s.Models /// version from being served via REST APIs /// Storage flags the version as storage version. /// There must be exactly one flagged as storage version. - public V1beta1CustomResourceDefinitionVersion(string name, bool served, bool storage) + /// AdditionalPrinterColumns are + /// additional columns shown e.g. in kubectl next to the name. Defaults + /// to a created-at column. Top-level and per-version columns are + /// mutually exclusive. Per-version columns must not all be set to + /// identical values (top-level columns should be used instead) This + /// field is alpha-level and is only honored by servers that enable the + /// CustomResourceWebhookConversion feature. NOTE: CRDs created prior + /// to 1.13 populated the top-level additionalPrinterColumns field by + /// default. To apply an update that changes to per-version + /// additionalPrinterColumns, the top-level additionalPrinterColumns + /// field must be explicitly set to null + /// Schema describes the schema for CustomResource + /// used in validation, pruning, and defaulting. Top-level and + /// per-version schemas are mutually exclusive. Per-version schemas + /// must not all be set to identical values (top-level validation + /// schema should be used instead) This field is alpha-level and is + /// only honored by servers that enable the + /// CustomResourceWebhookConversion feature. + /// Subresources describes the subresources + /// for CustomResource Top-level and per-version subresources are + /// mutually exclusive. Per-version subresources must not all be set to + /// identical values (top-level subresources should be used instead) + /// This field is alpha-level and is only honored by servers that + /// enable the CustomResourceWebhookConversion feature. + public V1beta1CustomResourceDefinitionVersion(string name, bool served, bool storage, IList additionalPrinterColumns = default(IList), V1beta1CustomResourceValidation schema = default(V1beta1CustomResourceValidation), V1beta1CustomResourceSubresources subresources = default(V1beta1CustomResourceSubresources)) { + AdditionalPrinterColumns = additionalPrinterColumns; Name = name; + Schema = schema; Served = served; Storage = storage; + Subresources = subresources; CustomInit(); } @@ -44,12 +76,39 @@ namespace k8s.Models /// partial void CustomInit(); + /// + /// Gets or sets additionalPrinterColumns are additional columns shown + /// e.g. in kubectl next to the name. Defaults to a created-at column. + /// Top-level and per-version columns are mutually exclusive. + /// Per-version columns must not all be set to identical values + /// (top-level columns should be used instead) This field is + /// alpha-level and is only honored by servers that enable the + /// CustomResourceWebhookConversion feature. NOTE: CRDs created prior + /// to 1.13 populated the top-level additionalPrinterColumns field by + /// default. To apply an update that changes to per-version + /// additionalPrinterColumns, the top-level additionalPrinterColumns + /// field must be explicitly set to null + /// + [JsonProperty(PropertyName = "additionalPrinterColumns")] + public IList AdditionalPrinterColumns { get; set; } + /// /// Gets or sets name is the version name, e.g. “v1”, “v2beta1”, etc. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } + /// + /// Gets or sets schema describes the schema for CustomResource used in + /// validation, pruning, and defaulting. Top-level and per-version + /// schemas are mutually exclusive. Per-version schemas must not all be + /// set to identical values (top-level validation schema should be used + /// instead) This field is alpha-level and is only honored by servers + /// that enable the CustomResourceWebhookConversion feature. + /// + [JsonProperty(PropertyName = "schema")] + public V1beta1CustomResourceValidation Schema { get; set; } + /// /// Gets or sets served is a flag enabling/disabling this version from /// being served via REST APIs @@ -64,6 +123,17 @@ namespace k8s.Models [JsonProperty(PropertyName = "storage")] public bool Storage { get; set; } + /// + /// Gets or sets subresources describes the subresources for + /// CustomResource Top-level and per-version subresources are mutually + /// exclusive. Per-version subresources must not all be set to + /// identical values (top-level subresources should be used instead) + /// This field is alpha-level and is only honored by servers that + /// enable the CustomResourceWebhookConversion feature. + /// + [JsonProperty(PropertyName = "subresources")] + public V1beta1CustomResourceSubresources Subresources { get; set; } + /// /// Validate the object. /// @@ -76,6 +146,20 @@ namespace k8s.Models { throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } + if (AdditionalPrinterColumns != null) + { + foreach (var element in AdditionalPrinterColumns) + { + if (element != null) + { + element.Validate(); + } + } + } + if (Subresources != null) + { + Subresources.Validate(); + } } } } diff --git a/src/KubernetesClient/generated/Models/V1beta1TokenReviewSpec.cs b/src/KubernetesClient/generated/Models/V1beta1TokenReviewSpec.cs index babf696..316a43c 100644 --- a/src/KubernetesClient/generated/Models/V1beta1TokenReviewSpec.cs +++ b/src/KubernetesClient/generated/Models/V1beta1TokenReviewSpec.cs @@ -7,6 +7,8 @@ namespace k8s.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -25,9 +27,16 @@ namespace k8s.Models /// /// Initializes a new instance of the V1beta1TokenReviewSpec class. /// + /// Audiences is a list of the identifiers that + /// the resource server presented with the token identifies as. + /// Audience-aware token authenticators will verify that the token was + /// intended for at least one of the audiences in this list. If no + /// audiences are provided, the audience will default to the audience + /// of the Kubernetes apiserver. /// Token is the opaque bearer token. - public V1beta1TokenReviewSpec(string token = default(string)) + public V1beta1TokenReviewSpec(IList audiences = default(IList), string token = default(string)) { + Audiences = audiences; Token = token; CustomInit(); } @@ -37,6 +46,17 @@ namespace k8s.Models /// partial void CustomInit(); + /// + /// Gets or sets audiences is a list of the identifiers that the + /// resource server presented with the token identifies as. + /// Audience-aware token authenticators will verify that the token was + /// intended for at least one of the audiences in this list. If no + /// audiences are provided, the audience will default to the audience + /// of the Kubernetes apiserver. + /// + [JsonProperty(PropertyName = "audiences")] + public IList Audiences { get; set; } + /// /// Gets or sets token is the opaque bearer token. /// diff --git a/src/KubernetesClient/generated/Models/V1beta1TokenReviewStatus.cs b/src/KubernetesClient/generated/Models/V1beta1TokenReviewStatus.cs index 27d33fc..8c88253 100644 --- a/src/KubernetesClient/generated/Models/V1beta1TokenReviewStatus.cs +++ b/src/KubernetesClient/generated/Models/V1beta1TokenReviewStatus.cs @@ -7,6 +7,8 @@ namespace k8s.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -25,14 +27,25 @@ namespace k8s.Models /// /// Initializes a new instance of the V1beta1TokenReviewStatus class. /// + /// Audiences are audience identifiers chosen + /// by the authenticator that are compatible with both the TokenReview + /// and token. An identifier is any identifier in the intersection of + /// the TokenReviewSpec audiences and the token's audiences. A client + /// of the TokenReview API that sets the spec.audiences field should + /// validate that a compatible audience identifier is returned in the + /// status.audiences field to ensure that the TokenReview server is + /// audience aware. If a TokenReview returns an empty status.audience + /// field where status.authenticated is "true", the token is valid + /// against the audience of the Kubernetes API server. /// Authenticated indicates that the token /// was associated with a known user. /// Error indicates that the token couldn't be /// checked /// User is the UserInfo associated with the /// provided token. - public V1beta1TokenReviewStatus(bool? authenticated = default(bool?), string error = default(string), V1beta1UserInfo user = default(V1beta1UserInfo)) + public V1beta1TokenReviewStatus(IList audiences = default(IList), bool? authenticated = default(bool?), string error = default(string), V1beta1UserInfo user = default(V1beta1UserInfo)) { + Audiences = audiences; Authenticated = authenticated; Error = error; User = user; @@ -44,6 +57,21 @@ namespace k8s.Models /// partial void CustomInit(); + /// + /// Gets or sets audiences are audience identifiers chosen by the + /// authenticator that are compatible with both the TokenReview and + /// token. An identifier is any identifier in the intersection of the + /// TokenReviewSpec audiences and the token's audiences. A client of + /// the TokenReview API that sets the spec.audiences field should + /// validate that a compatible audience identifier is returned in the + /// status.audiences field to ensure that the TokenReview server is + /// audience aware. If a TokenReview returns an empty status.audience + /// field where status.authenticated is "true", the token is valid + /// against the audience of the Kubernetes API server. + /// + [JsonProperty(PropertyName = "audiences")] + public IList Audiences { get; set; } + /// /// Gets or sets authenticated indicates that the token was associated /// with a known user. diff --git a/src/KubernetesClient/generated/Models/V1beta1Webhook.cs b/src/KubernetesClient/generated/Models/V1beta1Webhook.cs index eaaff8c..4758337 100644 --- a/src/KubernetesClient/generated/Models/V1beta1Webhook.cs +++ b/src/KubernetesClient/generated/Models/V1beta1Webhook.cs @@ -99,7 +99,7 @@ namespace k8s.Models /// be undone. Requests with the dryRun attribute will be auto-rejected /// if they match a webhook with sideEffects == Unknown or Some. /// Defaults to Unknown. - public V1beta1Webhook(V1beta1WebhookClientConfig clientConfig, string name, string failurePolicy = default(string), V1LabelSelector namespaceSelector = default(V1LabelSelector), IList rules = default(IList), string sideEffects = default(string)) + public V1beta1Webhook(Admissionregistrationv1beta1WebhookClientConfig clientConfig, string name, string failurePolicy = default(string), V1LabelSelector namespaceSelector = default(V1LabelSelector), IList rules = default(IList), string sideEffects = default(string)) { ClientConfig = clientConfig; FailurePolicy = failurePolicy; @@ -120,7 +120,7 @@ namespace k8s.Models /// Required /// [JsonProperty(PropertyName = "clientConfig")] - public V1beta1WebhookClientConfig ClientConfig { get; set; } + public Admissionregistrationv1beta1WebhookClientConfig ClientConfig { get; set; } /// /// Gets or sets failurePolicy defines how unrecognized errors from the diff --git a/src/KubernetesClient/generated/swagger.json b/src/KubernetesClient/generated/swagger.json index ffe2d47..639f938 100644 --- a/src/KubernetesClient/generated/swagger.json +++ b/src/KubernetesClient/generated/swagger.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "Kubernetes", - "version": "v1.12.0" + "version": "v1.13.0" }, "paths": { "/api/": { @@ -680,13 +680,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -766,6 +759,13 @@ "schema": { "$ref": "#/definitions/v1.Namespace" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -799,6 +799,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -867,6 +874,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -919,13 +940,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1005,6 +1019,13 @@ "schema": { "$ref": "#/definitions/v1.ConfigMap" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1069,13 +1090,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1131,6 +1145,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -1225,6 +1246,13 @@ "schema": { "$ref": "#/definitions/v1.ConfigMap" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1272,7 +1300,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -1357,6 +1384,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1438,13 +1472,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1524,6 +1551,13 @@ "schema": { "$ref": "#/definitions/v1.Endpoints" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1588,13 +1622,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1650,6 +1677,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -1744,6 +1778,13 @@ "schema": { "$ref": "#/definitions/v1.Endpoints" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1791,7 +1832,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -1876,6 +1916,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1957,13 +2004,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2043,6 +2083,13 @@ "schema": { "$ref": "#/definitions/v1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2107,13 +2154,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2169,6 +2209,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -2263,6 +2310,13 @@ "schema": { "$ref": "#/definitions/v1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2310,7 +2364,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -2395,6 +2448,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2476,13 +2536,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2562,6 +2615,13 @@ "schema": { "$ref": "#/definitions/v1.LimitRange" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2626,13 +2686,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2688,6 +2741,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -2782,6 +2842,13 @@ "schema": { "$ref": "#/definitions/v1.LimitRange" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2829,7 +2896,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -2914,6 +2980,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2995,13 +3068,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3081,6 +3147,13 @@ "schema": { "$ref": "#/definitions/v1.PersistentVolumeClaim" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3145,13 +3218,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3207,6 +3273,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -3301,6 +3374,13 @@ "schema": { "$ref": "#/definitions/v1.PersistentVolumeClaim" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3348,7 +3428,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -3433,6 +3512,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3540,6 +3626,13 @@ "schema": { "$ref": "#/definitions/v1.PersistentVolumeClaim" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3593,6 +3686,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3674,13 +3774,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3760,6 +3853,13 @@ "schema": { "$ref": "#/definitions/v1.Pod" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3824,13 +3924,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3886,6 +3979,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -3980,6 +4080,13 @@ "schema": { "$ref": "#/definitions/v1.Pod" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -4027,7 +4134,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -4112,6 +4218,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -4338,6 +4451,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -4422,6 +4549,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -5365,6 +5506,13 @@ "schema": { "$ref": "#/definitions/v1.Pod" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5418,6 +5566,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5499,13 +5654,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -5585,6 +5733,13 @@ "schema": { "$ref": "#/definitions/v1.PodTemplate" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5649,13 +5804,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -5711,6 +5859,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -5805,6 +5960,13 @@ "schema": { "$ref": "#/definitions/v1.PodTemplate" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5852,7 +6014,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -5937,6 +6098,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6018,13 +6186,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -6104,6 +6265,13 @@ "schema": { "$ref": "#/definitions/v1.ReplicationController" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6168,13 +6336,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -6230,6 +6391,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -6324,6 +6492,13 @@ "schema": { "$ref": "#/definitions/v1.ReplicationController" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6371,7 +6546,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -6456,6 +6630,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6563,6 +6744,13 @@ "schema": { "$ref": "#/definitions/v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6616,6 +6804,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6723,6 +6918,13 @@ "schema": { "$ref": "#/definitions/v1.ReplicationController" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6776,6 +6978,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6857,13 +7066,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -6943,6 +7145,13 @@ "schema": { "$ref": "#/definitions/v1.ResourceQuota" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7007,13 +7216,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -7069,6 +7271,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -7163,6 +7372,13 @@ "schema": { "$ref": "#/definitions/v1.ResourceQuota" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7210,7 +7426,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -7295,6 +7510,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7402,6 +7624,13 @@ "schema": { "$ref": "#/definitions/v1.ResourceQuota" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7455,6 +7684,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7536,13 +7772,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -7622,6 +7851,13 @@ "schema": { "$ref": "#/definitions/v1.Secret" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7686,13 +7922,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -7748,6 +7977,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -7842,6 +8078,13 @@ "schema": { "$ref": "#/definitions/v1.Secret" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7889,7 +8132,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -7974,6 +8216,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8055,13 +8304,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -8141,6 +8383,13 @@ "schema": { "$ref": "#/definitions/v1.ServiceAccount" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8205,13 +8454,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -8267,6 +8509,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -8361,6 +8610,13 @@ "schema": { "$ref": "#/definitions/v1.ServiceAccount" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8408,7 +8664,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -8493,6 +8748,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8574,13 +8836,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -8660,6 +8915,13 @@ "schema": { "$ref": "#/definitions/v1.Service" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8693,6 +8955,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -8787,6 +9056,13 @@ "schema": { "$ref": "#/definitions/v1.Service" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8834,7 +9110,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -8919,6 +9194,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9550,6 +9832,13 @@ "schema": { "$ref": "#/definitions/v1.Service" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9603,6 +9892,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9726,6 +10022,13 @@ "schema": { "$ref": "#/definitions/v1.Namespace" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9773,7 +10076,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -9858,6 +10160,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9949,6 +10258,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -10027,6 +10343,13 @@ "schema": { "$ref": "#/definitions/v1.Namespace" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10080,6 +10403,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10153,13 +10483,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -10239,6 +10562,13 @@ "schema": { "$ref": "#/definitions/v1.Node" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10303,13 +10633,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -10365,6 +10688,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -10451,6 +10781,13 @@ "schema": { "$ref": "#/definitions/v1.Node" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10498,7 +10835,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -10583,6 +10919,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11190,6 +11533,13 @@ "schema": { "$ref": "#/definitions/v1.Node" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11243,6 +11593,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11420,13 +11777,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -11506,6 +11856,13 @@ "schema": { "$ref": "#/definitions/v1.PersistentVolume" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11570,13 +11927,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -11632,6 +11982,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -11718,6 +12075,13 @@ "schema": { "$ref": "#/definitions/v1.PersistentVolume" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11765,7 +12129,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -11850,6 +12213,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11949,6 +12319,13 @@ "schema": { "$ref": "#/definitions/v1.PersistentVolume" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -12002,6 +12379,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -16028,13 +16412,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -16114,6 +16491,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.InitializerConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -16178,13 +16562,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -16240,6 +16617,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -16326,6 +16710,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.InitializerConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -16373,7 +16764,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -16458,6 +16848,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -16706,13 +17103,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -16792,6 +17182,13 @@ "schema": { "$ref": "#/definitions/v1beta1.MutatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -16856,13 +17253,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -16918,6 +17308,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -17004,6 +17401,13 @@ "schema": { "$ref": "#/definitions/v1beta1.MutatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17051,7 +17455,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -17136,6 +17539,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17209,13 +17619,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -17295,6 +17698,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ValidatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17359,13 +17769,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -17421,6 +17824,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -17507,6 +17917,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ValidatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17554,7 +17971,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -17639,6 +18055,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18062,13 +18485,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -18148,6 +18564,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CustomResourceDefinition" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18212,13 +18635,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -18274,6 +18690,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -18360,6 +18783,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CustomResourceDefinition" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18407,7 +18837,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -18492,6 +18921,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18591,6 +19027,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CustomResourceDefinition" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18644,6 +19087,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18925,13 +19375,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -19011,6 +19454,13 @@ "schema": { "$ref": "#/definitions/v1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19075,13 +19525,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -19137,6 +19580,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -19223,6 +19673,13 @@ "schema": { "$ref": "#/definitions/v1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19270,7 +19727,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -19355,6 +19811,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19454,6 +19917,13 @@ "schema": { "$ref": "#/definitions/v1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19507,6 +19977,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19755,13 +20232,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -19841,6 +20311,13 @@ "schema": { "$ref": "#/definitions/v1beta1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19905,13 +20382,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -19967,6 +20437,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -20053,6 +20530,13 @@ "schema": { "$ref": "#/definitions/v1beta1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20100,7 +20584,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -20185,6 +20668,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20284,6 +20774,13 @@ "schema": { "$ref": "#/definitions/v1beta1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20337,6 +20834,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20930,13 +21434,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -21016,6 +21513,13 @@ "schema": { "$ref": "#/definitions/v1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21080,13 +21584,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -21142,6 +21639,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -21236,6 +21740,13 @@ "schema": { "$ref": "#/definitions/v1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21283,7 +21794,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -21368,6 +21878,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21449,13 +21966,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -21535,6 +22045,13 @@ "schema": { "$ref": "#/definitions/v1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21599,13 +22116,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -21661,6 +22171,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -21755,6 +22272,13 @@ "schema": { "$ref": "#/definitions/v1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21802,7 +22326,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -21887,6 +22410,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21994,6 +22524,13 @@ "schema": { "$ref": "#/definitions/v1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22047,6 +22584,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22128,13 +22672,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -22214,6 +22751,13 @@ "schema": { "$ref": "#/definitions/v1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22278,13 +22822,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -22340,6 +22877,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -22434,6 +22978,13 @@ "schema": { "$ref": "#/definitions/v1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22481,7 +23032,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -22566,6 +23116,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22673,6 +23230,13 @@ "schema": { "$ref": "#/definitions/v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22726,6 +23290,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22833,6 +23404,13 @@ "schema": { "$ref": "#/definitions/v1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22886,6 +23464,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22967,13 +23552,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23053,6 +23631,13 @@ "schema": { "$ref": "#/definitions/v1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23117,13 +23702,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23179,6 +23757,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -23273,6 +23858,13 @@ "schema": { "$ref": "#/definitions/v1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23320,7 +23912,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -23405,6 +23996,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23512,6 +24110,13 @@ "schema": { "$ref": "#/definitions/v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23565,6 +24170,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23672,6 +24284,13 @@ "schema": { "$ref": "#/definitions/v1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23725,6 +24344,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23806,13 +24432,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23892,6 +24511,13 @@ "schema": { "$ref": "#/definitions/v1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23956,13 +24582,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -24018,6 +24637,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -24112,6 +24738,13 @@ "schema": { "$ref": "#/definitions/v1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24159,7 +24792,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -24244,6 +24876,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24351,6 +24990,13 @@ "schema": { "$ref": "#/definitions/v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24404,6 +25050,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24511,6 +25164,13 @@ "schema": { "$ref": "#/definitions/v1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24564,6 +25224,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26219,13 +26886,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -26305,6 +26965,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26369,13 +27036,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -26431,6 +27091,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -26525,6 +27192,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26572,7 +27246,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -26657,6 +27330,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26738,13 +27418,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -26824,6 +27497,13 @@ "schema": { "$ref": "#/definitions/apps.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26888,13 +27568,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -26950,6 +27623,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -27044,6 +27724,13 @@ "schema": { "$ref": "#/definitions/apps.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27091,7 +27778,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -27176,6 +27862,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27254,19 +27947,19 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/apps.v1beta1.DeploymentStatus" + "$ref": "#/definitions/v1.Status" } }, "201": { "description": "Created", "schema": { - "$ref": "#/definitions/apps.v1beta1.DeploymentStatus" + "$ref": "#/definitions/v1.Status" } }, "202": { "description": "Accepted", "schema": { - "$ref": "#/definitions/apps.v1beta1.DeploymentStatus" + "$ref": "#/definitions/v1.Status" } }, "401": { @@ -27281,6 +27974,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -27367,6 +28074,13 @@ "schema": { "$ref": "#/definitions/apps.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27420,6 +28134,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27527,6 +28248,13 @@ "schema": { "$ref": "#/definitions/apps.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27580,6 +28308,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27661,13 +28396,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -27747,6 +28475,13 @@ "schema": { "$ref": "#/definitions/v1beta1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -27811,13 +28546,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -27873,6 +28601,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -27967,6 +28702,13 @@ "schema": { "$ref": "#/definitions/v1beta1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28014,7 +28756,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -28099,6 +28840,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28206,6 +28954,13 @@ "schema": { "$ref": "#/definitions/apps.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28259,6 +29014,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28366,6 +29128,13 @@ "schema": { "$ref": "#/definitions/v1beta1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28419,6 +29188,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29624,13 +30400,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -29710,6 +30479,13 @@ "schema": { "$ref": "#/definitions/v1beta2.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29774,13 +30550,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -29836,6 +30605,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -29930,6 +30706,13 @@ "schema": { "$ref": "#/definitions/v1beta2.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29977,7 +30760,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -30062,6 +30844,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30143,13 +30932,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -30229,6 +31011,13 @@ "schema": { "$ref": "#/definitions/v1beta2.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30293,13 +31082,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -30355,6 +31137,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -30449,6 +31238,13 @@ "schema": { "$ref": "#/definitions/v1beta2.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30496,7 +31292,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -30581,6 +31376,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30688,6 +31490,13 @@ "schema": { "$ref": "#/definitions/v1beta2.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30741,6 +31550,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30822,13 +31638,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -30908,6 +31717,13 @@ "schema": { "$ref": "#/definitions/v1beta2.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30972,13 +31788,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -31034,6 +31843,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -31128,6 +31944,13 @@ "schema": { "$ref": "#/definitions/v1beta2.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31175,7 +31998,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -31260,6 +32082,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31367,6 +32196,13 @@ "schema": { "$ref": "#/definitions/v1beta2.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31420,6 +32256,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31527,6 +32370,13 @@ "schema": { "$ref": "#/definitions/v1beta2.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31580,6 +32430,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31661,13 +32518,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -31747,6 +32597,13 @@ "schema": { "$ref": "#/definitions/v1beta2.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -31811,13 +32668,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -31873,6 +32723,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -31967,6 +32824,13 @@ "schema": { "$ref": "#/definitions/v1beta2.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32014,7 +32878,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -32099,6 +32962,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32206,6 +33076,13 @@ "schema": { "$ref": "#/definitions/v1beta2.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32259,6 +33136,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32366,6 +33250,13 @@ "schema": { "$ref": "#/definitions/v1beta2.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32419,6 +33310,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32500,13 +33398,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -32586,6 +33477,13 @@ "schema": { "$ref": "#/definitions/v1beta2.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32650,13 +33548,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -32712,6 +33603,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -32806,6 +33704,13 @@ "schema": { "$ref": "#/definitions/v1beta2.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32853,7 +33758,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -32938,6 +33842,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33045,6 +33956,13 @@ "schema": { "$ref": "#/definitions/v1beta2.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33098,6 +34016,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33205,6 +34130,13 @@ "schema": { "$ref": "#/definitions/v1beta2.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33258,6 +34190,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34637,6 +35576,730 @@ } ] }, + "/apis/auditregistration.k8s.io/": { + "get": { + "description": "get information of a group", + "consumes": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration" + ], + "operationId": "getAPIGroup", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.APIGroup" + } + }, + "401": { + "description": "Unauthorized" + } + } + } + }, + "/apis/auditregistration.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "consumes": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "getAPIResources", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.APIResourceList" + } + }, + "401": { + "description": "Unauthorized" + } + } + } + }, + "/apis/auditregistration.k8s.io/v1alpha1/auditsinks": { + "get": { + "description": "list or watch objects of kind AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "listAuditSink", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSinkList" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "post": { + "description": "create an AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "createAuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "delete": { + "description": "delete collection of AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "deleteCollectionAuditSink", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}": { + "get": { + "description": "read the specified AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "readAuditSink", + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", + "name": "exact", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Should this value be exported. Export strips fields that a user can not specify.", + "name": "export", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "put": { + "description": "replace the specified AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "replaceAuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "delete": { + "description": "delete an AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "deleteAuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "schema": { + "$ref": "#/definitions/v1.DeleteOptions" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "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.", + "name": "gracePeriodSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "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.", + "name": "orphanDependents", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", + "name": "propagationPolicy", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.Status" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "patch": { + "description": "partially update the specified AuditSink", + "consumes": [ + "application/json-patch+json", + "application/merge-patch+json", + "application/strategic-merge-patch+json" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "patchAuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.Patch" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "name of the AuditSink", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks": { + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, + "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/{name}": { + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "name of the AuditSink", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, "/apis/authentication.k8s.io/": { "get": { "description": "get information of a group", @@ -34762,6 +36425,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -34863,6 +36540,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -34997,6 +36688,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35073,6 +36778,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35141,6 +36860,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35209,6 +36942,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35310,6 +37057,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35386,6 +37147,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35454,6 +37229,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35522,6 +37311,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35736,13 +37539,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -35822,6 +37618,13 @@ "schema": { "$ref": "#/definitions/v1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35886,13 +37689,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -35948,6 +37744,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -36042,6 +37845,13 @@ "schema": { "$ref": "#/definitions/v1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36089,7 +37899,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -36174,6 +37983,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36281,6 +38097,13 @@ "schema": { "$ref": "#/definitions/v1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36334,6 +38157,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36777,13 +38607,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -36863,6 +38686,13 @@ "schema": { "$ref": "#/definitions/v2beta1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36927,13 +38757,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -36989,6 +38812,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -37083,6 +38913,13 @@ "schema": { "$ref": "#/definitions/v2beta1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -37130,7 +38967,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -37215,6 +39051,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -37322,6 +39165,13 @@ "schema": { "$ref": "#/definitions/v2beta1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -37375,6 +39225,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -37818,13 +39675,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -37904,6 +39754,13 @@ "schema": { "$ref": "#/definitions/v2beta2.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -37968,13 +39825,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -38030,6 +39880,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38124,6 +39981,13 @@ "schema": { "$ref": "#/definitions/v2beta2.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -38171,7 +40035,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -38256,6 +40119,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -38363,6 +40233,13 @@ "schema": { "$ref": "#/definitions/v2beta2.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -38416,6 +40293,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -38892,13 +40776,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -38978,6 +40855,13 @@ "schema": { "$ref": "#/definitions/v1.Job" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39042,13 +40926,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -39104,6 +40981,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -39198,6 +41082,13 @@ "schema": { "$ref": "#/definitions/v1.Job" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39245,7 +41136,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -39330,6 +41220,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39437,6 +41334,13 @@ "schema": { "$ref": "#/definitions/v1.Job" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39490,6 +41394,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39933,13 +41844,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -40019,6 +41923,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40083,13 +41994,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -40145,6 +42049,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -40239,6 +42150,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40286,7 +42204,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -40371,6 +42288,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40478,6 +42402,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40531,6 +42462,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40974,13 +42912,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -41060,6 +42991,13 @@ "schema": { "$ref": "#/definitions/v2alpha1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41124,13 +43062,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -41186,6 +43117,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -41280,6 +43218,13 @@ "schema": { "$ref": "#/definitions/v2alpha1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41327,7 +43272,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -41412,6 +43356,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41519,6 +43470,13 @@ "schema": { "$ref": "#/definitions/v2alpha1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41572,6 +43530,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41944,13 +43909,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -42030,6 +43988,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CertificateSigningRequest" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42094,13 +44059,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -42156,6 +44114,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -42242,6 +44207,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CertificateSigningRequest" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42289,7 +44261,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -42374,6 +44345,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42465,6 +44443,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -42543,6 +44528,13 @@ "schema": { "$ref": "#/definitions/v1beta1.CertificateSigningRequest" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42596,6 +44588,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42981,13 +44980,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -43067,6 +45059,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Lease" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43131,13 +45130,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -43193,6 +45185,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -43287,6 +45286,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Lease" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43334,7 +45340,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -43419,6 +45424,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43895,13 +45907,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -43981,6 +45986,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -44045,13 +46057,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -44107,6 +46112,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -44201,6 +46213,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -44248,7 +46267,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -44333,6 +46351,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45017,13 +47042,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -45103,6 +47121,13 @@ "schema": { "$ref": "#/definitions/v1beta1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45167,13 +47192,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -45229,6 +47247,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -45323,6 +47348,13 @@ "schema": { "$ref": "#/definitions/v1beta1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45370,7 +47402,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -45455,6 +47486,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45562,6 +47600,13 @@ "schema": { "$ref": "#/definitions/v1beta1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45615,6 +47660,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45696,13 +47748,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -45782,6 +47827,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45846,13 +47898,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -45908,6 +47953,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -46002,6 +48054,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46049,7 +48108,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -46134,6 +48192,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46212,19 +48277,19 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/extensions.v1beta1.DeploymentStatus" + "$ref": "#/definitions/v1.Status" } }, "201": { "description": "Created", "schema": { - "$ref": "#/definitions/extensions.v1beta1.DeploymentStatus" + "$ref": "#/definitions/v1.Status" } }, "202": { "description": "Accepted", "schema": { - "$ref": "#/definitions/extensions.v1beta1.DeploymentStatus" + "$ref": "#/definitions/v1.Status" } }, "401": { @@ -46239,6 +48304,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -46325,6 +48404,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46378,6 +48464,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46485,6 +48578,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46538,6 +48638,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46619,13 +48726,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -46705,6 +48805,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Ingress" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46769,13 +48876,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -46831,6 +48931,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -46925,6 +49032,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Ingress" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46972,7 +49086,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -47057,6 +49170,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47164,6 +49284,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Ingress" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47217,6 +49344,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47298,13 +49432,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -47384,6 +49511,13 @@ "schema": { "$ref": "#/definitions/v1beta1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47448,13 +49582,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -47510,6 +49637,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -47604,6 +49738,13 @@ "schema": { "$ref": "#/definitions/v1beta1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47651,7 +49792,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -47736,6 +49876,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47817,13 +49964,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -47903,6 +50043,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47967,13 +50114,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -48029,6 +50169,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -48123,6 +50270,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48170,7 +50324,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -48255,6 +50408,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48362,6 +50522,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48415,6 +50582,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48522,6 +50696,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48575,6 +50756,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48682,6 +50870,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48735,6 +50930,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48920,13 +51122,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -49006,6 +51201,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -49070,13 +51272,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -49132,6 +51327,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -49218,6 +51420,13 @@ "schema": { "$ref": "#/definitions/extensions.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -49265,7 +51474,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -49350,6 +51558,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50860,13 +53075,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -50946,6 +53154,13 @@ "schema": { "$ref": "#/definitions/v1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51010,13 +53225,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51072,6 +53280,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -51166,6 +53381,13 @@ "schema": { "$ref": "#/definitions/v1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51213,7 +53435,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -51298,6 +53519,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51774,13 +54002,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51860,6 +54081,13 @@ "schema": { "$ref": "#/definitions/v1beta1.PodDisruptionBudget" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51924,13 +54152,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51986,6 +54207,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -52080,6 +54308,13 @@ "schema": { "$ref": "#/definitions/v1beta1.PodDisruptionBudget" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52127,7 +54362,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -52212,6 +54446,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52319,6 +54560,13 @@ "schema": { "$ref": "#/definitions/v1beta1.PodDisruptionBudget" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52372,6 +54620,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52557,13 +54812,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -52643,6 +54891,13 @@ "schema": { "$ref": "#/definitions/policy.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52707,13 +54962,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -52769,6 +55017,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -52855,6 +55110,13 @@ "schema": { "$ref": "#/definitions/policy.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52902,7 +55164,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -52987,6 +55248,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53493,13 +55761,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -53579,6 +55840,13 @@ "schema": { "$ref": "#/definitions/v1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53643,13 +55911,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -53705,6 +55966,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -53775,6 +56043,13 @@ "schema": { "$ref": "#/definitions/v1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53822,7 +56097,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -53907,6 +56181,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53980,13 +56261,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -54066,6 +56340,13 @@ "schema": { "$ref": "#/definitions/v1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -54130,13 +56411,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -54192,6 +56466,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -54262,6 +56543,13 @@ "schema": { "$ref": "#/definitions/v1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -54309,7 +56597,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -54394,6 +56681,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -54467,13 +56761,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -54553,6 +56840,13 @@ "schema": { "$ref": "#/definitions/v1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -54617,13 +56911,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -54679,6 +56966,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -54757,6 +57051,13 @@ "schema": { "$ref": "#/definitions/v1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -54804,7 +57105,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -54889,6 +57189,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -54970,13 +57277,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -55056,6 +57356,13 @@ "schema": { "$ref": "#/definitions/v1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -55120,13 +57427,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -55182,6 +57482,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -55260,6 +57567,13 @@ "schema": { "$ref": "#/definitions/v1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -55307,7 +57621,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -55392,6 +57705,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56448,13 +58768,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -56534,6 +58847,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56598,13 +58918,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -56660,6 +58973,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -56730,6 +59050,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56777,7 +59104,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -56862,6 +59188,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56935,13 +59268,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57021,6 +59347,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57085,13 +59418,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57147,6 +59473,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -57217,6 +59550,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57264,7 +59604,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -57349,6 +59688,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57422,13 +59768,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57508,6 +59847,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57572,13 +59918,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57634,6 +59973,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -57712,6 +60058,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57759,7 +60112,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -57844,6 +60196,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57925,13 +60284,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -58011,6 +60363,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -58075,13 +60434,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -58137,6 +60489,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -58215,6 +60574,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -58262,7 +60628,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -58347,6 +60712,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59403,13 +61775,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59489,6 +61854,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59553,13 +61925,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59615,6 +61980,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -59685,6 +62057,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59732,7 +62111,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -59817,6 +62195,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59890,13 +62275,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59976,6 +62354,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60040,13 +62425,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60102,6 +62480,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -60172,6 +62557,13 @@ "schema": { "$ref": "#/definitions/v1beta1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60219,7 +62611,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -60304,6 +62695,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60377,13 +62775,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60463,6 +62854,13 @@ "schema": { "$ref": "#/definitions/v1beta1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60527,13 +62925,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60589,6 +62980,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -60667,6 +63065,13 @@ "schema": { "$ref": "#/definitions/v1beta1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60714,7 +63119,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -60799,6 +63203,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60880,13 +63291,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60966,6 +63370,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -61030,13 +63441,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -61092,6 +63496,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -61170,6 +63581,13 @@ "schema": { "$ref": "#/definitions/v1beta1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -61217,7 +63635,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -61302,6 +63719,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62391,13 +64815,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -62477,6 +64894,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62541,13 +64965,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -62603,6 +65020,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -62689,6 +65113,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62736,7 +65167,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -62821,6 +65251,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63069,13 +65506,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63155,6 +65585,13 @@ "schema": { "$ref": "#/definitions/v1beta1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63219,13 +65656,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63281,6 +65711,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -63367,6 +65804,13 @@ "schema": { "$ref": "#/definitions/v1beta1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63414,7 +65858,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -63499,6 +65942,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63780,13 +66230,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63866,6 +66309,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.PodPreset" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63930,13 +66380,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63992,6 +66435,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -64086,6 +66536,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.PodPreset" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -64133,7 +66590,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -64218,6 +66674,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -64694,13 +67157,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -64780,6 +67236,13 @@ "schema": { "$ref": "#/definitions/v1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -64844,13 +67307,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -64906,6 +67362,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -64992,6 +67455,13 @@ "schema": { "$ref": "#/definitions/v1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65039,7 +67509,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -65124,6 +67593,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65162,6 +67638,688 @@ } ] }, + "/apis/storage.k8s.io/v1/volumeattachments": { + "get": { + "description": "list or watch objects of kind VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "listVolumeAttachment", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachmentList" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "post": { + "description": "create a VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "createVolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "delete": { + "description": "delete collection of VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "deleteCollectionVolumeAttachment", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/storage.k8s.io/v1/volumeattachments/{name}": { + "get": { + "description": "read the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "readVolumeAttachment", + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", + "name": "exact", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Should this value be exported. Export strips fields that a user can not specify.", + "name": "export", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "put": { + "description": "replace the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "replaceVolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "delete": { + "description": "delete a VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "deleteVolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "schema": { + "$ref": "#/definitions/v1.DeleteOptions" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "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.", + "name": "gracePeriodSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "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.", + "name": "orphanDependents", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", + "name": "propagationPolicy", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.Status" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "patch": { + "description": "partially update the specified VolumeAttachment", + "consumes": [ + "application/json-patch+json", + "application/merge-patch+json", + "application/strategic-merge-patch+json" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "patchVolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.Patch" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "name of the VolumeAttachment", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": { + "get": { + "description": "read status of the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "readVolumeAttachmentStatus", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "put": { + "description": "replace status of the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "replaceVolumeAttachmentStatus", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "patch": { + "description": "partially update status of the specified VolumeAttachment", + "consumes": [ + "application/json-patch+json", + "application/merge-patch+json", + "application/strategic-merge-patch+json" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "patchVolumeAttachmentStatus", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/v1.Patch" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "name of the VolumeAttachment", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, "/apis/storage.k8s.io/v1/watch/storageclasses": { "parameters": [ { @@ -65304,6 +68462,148 @@ } ] }, + "/apis/storage.k8s.io/v1/watch/volumeattachments": { + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": { + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "name of the VolumeAttachment", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, "/apis/storage.k8s.io/v1alpha1/": { "get": { "description": "get available resources", @@ -65372,13 +68672,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -65458,6 +68751,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65522,13 +68822,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -65584,6 +68877,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -65670,6 +68970,13 @@ "schema": { "$ref": "#/definitions/v1alpha1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65717,7 +69024,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -65802,6 +69108,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66050,13 +69363,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66136,6 +69442,13 @@ "schema": { "$ref": "#/definitions/v1beta1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66200,13 +69513,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66262,6 +69568,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -66348,6 +69661,13 @@ "schema": { "$ref": "#/definitions/v1beta1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66395,7 +69715,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -66480,6 +69799,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66553,13 +69879,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66639,6 +69958,13 @@ "schema": { "$ref": "#/definitions/v1beta1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66703,13 +70029,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66765,6 +70084,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -66851,6 +70177,13 @@ "schema": { "$ref": "#/definitions/v1beta1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66898,7 +70231,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/v1.DeleteOptions" } @@ -66983,6 +70315,13 @@ "schema": { "$ref": "#/definitions/v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -68908,6 +72247,33 @@ } } }, + "v1.VolumeAttachmentStatus": { + "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", + "required": [ + "attached" + ], + "properties": { + "attachError": { + "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "$ref": "#/definitions/v1.VolumeError" + }, + "attached": { + "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "boolean" + }, + "attachmentMetadata": { + "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "detachError": { + "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.", + "$ref": "#/definitions/v1.VolumeError" + } + } + }, "v1beta1.VolumeAttachmentSpec": { "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "required": [ @@ -68982,6 +72348,27 @@ } } }, + "apiextensions.v1beta1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "required": [ + "namespace", + "name" + ], + "properties": { + "name": { + "description": "`name` is the name of the service. Required", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of the service. Required", + "type": "string" + }, + "path": { + "description": "`path` is an optional URL path which will be sent in any request to this service.", + "type": "string" + } + } + }, "v1beta1.StatefulSetCondition": { "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", "required": [ @@ -69178,6 +72565,38 @@ } ] }, + "v1beta1.SubjectRulesReviewStatus": { + "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "required": [ + "resourceRules", + "nonResourceRules", + "incomplete" + ], + "properties": { + "evaluationError": { + "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + "type": "string" + }, + "incomplete": { + "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", + "type": "boolean" + }, + "nonResourceRules": { + "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "type": "array", + "items": { + "$ref": "#/definitions/v1beta1.NonResourceRule" + } + }, + "resourceRules": { + "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + "type": "array", + "items": { + "$ref": "#/definitions/v1beta1.ResourceRule" + } + } + } + }, "v1beta1.PriorityClass": { "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "required": [ @@ -69429,6 +72848,7 @@ }, "strategy": { "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", "$ref": "#/definitions/apps.v1beta1.DeploymentStrategy" }, "template": { @@ -69577,6 +72997,24 @@ } } }, + "apiextensions.v1beta1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook. It has the same field as admissionregistration.v1beta1.WebhookClientConfig.", + "properties": { + "caBundle": { + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "type": "string", + "format": "byte" + }, + "service": { + "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.\n\nPort 443 will be used if it is open, otherwise it is an error.", + "$ref": "#/definitions/apiextensions.v1beta1.ServiceReference" + }, + "url": { + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + } + }, "v1.SecretList": { "description": "SecretList is a list of Secret.", "required": [ @@ -69805,6 +73243,24 @@ } } }, + "v1alpha1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a connection with the webhook", + "properties": { + "caBundle": { + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "type": "string", + "format": "byte" + }, + "service": { + "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.\n\nPort 443 will be used if it is open, otherwise it is an error.", + "$ref": "#/definitions/v1alpha1.ServiceReference" + }, + "url": { + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + } + }, "v1beta1.ClusterRole": { "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", "required": [ @@ -70622,7 +74078,7 @@ "format": "int32" }, "revisionHistoryLimit": { - "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.", + "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old RelicaSets\".", "type": "integer", "format": "int32" }, @@ -70943,6 +74399,82 @@ } ] }, + "v1beta1.StatefulSetSpec": { + "description": "A StatefulSetSpec is the specification of a StatefulSet.", + "required": [ + "template", + "serviceName" + ], + "properties": { + "podManagementPolicy": { + "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", + "type": "string" + }, + "replicas": { + "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + "type": "integer", + "format": "int32" + }, + "revisionHistoryLimit": { + "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + "type": "integer", + "format": "int32" + }, + "selector": { + "description": "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + "$ref": "#/definitions/v1.LabelSelector" + }, + "serviceName": { + "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", + "type": "string" + }, + "template": { + "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.", + "$ref": "#/definitions/v1.PodTemplateSpec" + }, + "updateStrategy": { + "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.", + "$ref": "#/definitions/v1beta1.StatefulSetUpdateStrategy" + }, + "volumeClaimTemplates": { + "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PersistentVolumeClaim" + } + } + } + }, + "v1beta1.UserInfo": { + "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", + "properties": { + "extra": { + "description": "Any additional information provided by the authenticator.", + "type": "object", + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "groups": { + "description": "The names of groups this user is a part of.", + "type": "array", + "items": { + "type": "string" + } + }, + "uid": { + "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "type": "string" + }, + "username": { + "description": "The name that uniquely identifies this user among all active users.", + "type": "string" + } + } + }, "v1beta1.Ingress": { "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", "properties": { @@ -71234,39 +74766,29 @@ } } }, - "v1.ResourceQuotaList": { - "description": "ResourceQuotaList is a list of ResourceQuota items.", + "v1beta1.SubjectAccessReviewStatus": { + "description": "SubjectAccessReviewStatus", "required": [ - "items" + "allowed" ], "properties": { - "apiVersion": { - "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "allowed": { + "description": "Allowed is required. True if the action would be allowed, false otherwise.", + "type": "boolean" + }, + "denied": { + "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", + "type": "boolean" + }, + "evaluationError": { + "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", "type": "string" }, - "items": { - "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", - "type": "array", - "items": { - "$ref": "#/definitions/v1.ResourceQuota" - } - }, - "kind": { - "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "reason": { + "description": "Reason is optional. It indicates why a request was allowed or denied.", "type": "string" - }, - "metadata": { - "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", - "$ref": "#/definitions/v1.ListMeta" } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "", - "kind": "ResourceQuotaList", - "version": "v1" - } - ] + } }, "v1.RoleRef": { "description": "RoleRef contains information that points to the role being used", @@ -71527,7 +75049,7 @@ }, "glusterfs": { "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md", - "$ref": "#/definitions/v1.GlusterfsVolumeSource" + "$ref": "#/definitions/v1.GlusterfsPersistentVolumeSource" }, "hostPath": { "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", @@ -71589,7 +75111,7 @@ "$ref": "#/definitions/v1.StorageOSPersistentVolumeSource" }, "volumeMode": { - "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is an alpha feature and may change in the future.", + "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is a beta feature.", "type": "string" }, "vsphereVolume": { @@ -72445,6 +75967,33 @@ } ] }, + "v1alpha1.AuditSink": { + "description": "AuditSink represents a cluster level audit sink", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/definitions/v1.ObjectMeta" + }, + "spec": { + "description": "Spec defines the audit configuration spec", + "$ref": "#/definitions/v1alpha1.AuditSinkSpec" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + ] + }, "v1.NodeCondition": { "description": "NodeCondition contains condition information for a node.", "required": [ @@ -72584,6 +76133,10 @@ "type": "string" } }, + "runAsGroup": { + "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.", + "$ref": "#/definitions/extensions.v1beta1.RunAsGroupStrategyOptions" + }, "runAsUser": { "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.", "$ref": "#/definitions/extensions.v1beta1.RunAsUserStrategyOptions" @@ -73125,6 +76678,11 @@ "items": { "$ref": "#/definitions/v1.ContainerPort" }, + "x-kubernetes-list-map-keys": [ + "containerPort", + "protocol" + ], + "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, @@ -73161,7 +76719,7 @@ "type": "boolean" }, "volumeDevices": { - "description": "volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.", + "description": "volumeDevices is the list of block devices to be used by the container. This is a beta feature.", "type": "array", "items": { "$ref": "#/definitions/v1.VolumeDevice" @@ -73740,52 +77298,6 @@ } } }, - "v1beta1.StatefulSetSpec": { - "description": "A StatefulSetSpec is the specification of a StatefulSet.", - "required": [ - "template", - "serviceName" - ], - "properties": { - "podManagementPolicy": { - "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", - "type": "string" - }, - "replicas": { - "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", - "type": "integer", - "format": "int32" - }, - "revisionHistoryLimit": { - "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", - "type": "integer", - "format": "int32" - }, - "selector": { - "description": "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", - "$ref": "#/definitions/v1.LabelSelector" - }, - "serviceName": { - "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", - "type": "string" - }, - "template": { - "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.", - "$ref": "#/definitions/v1.PodTemplateSpec" - }, - "updateStrategy": { - "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.", - "$ref": "#/definitions/v1beta1.StatefulSetUpdateStrategy" - }, - "volumeClaimTemplates": { - "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", - "type": "array", - "items": { - "$ref": "#/definitions/v1.PersistentVolumeClaim" - } - } - } - }, "v1.Service": { "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.", "properties": { @@ -74491,6 +78003,18 @@ } } }, + "v1.LoadBalancerStatus": { + "description": "LoadBalancerStatus represents the status of a load-balancer.", + "properties": { + "ingress": { + "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.LoadBalancerIngress" + } + } + } + }, "v1.ContainerStateRunning": { "description": "ContainerStateRunning is a running state of a container.", "properties": { @@ -74638,12 +78162,16 @@ ], "properties": { "additionalPrinterColumns": { - "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column.", + "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Optional, the global columns for all versions. Top-level and per-version columns are mutually exclusive.", "type": "array", "items": { "$ref": "#/definitions/v1beta1.CustomResourceColumnDefinition" } }, + "conversion": { + "description": "`conversion` defines conversion settings for the CRD.", + "$ref": "#/definitions/v1beta1.CustomResourceConversion" + }, "group": { "description": "Group is the group this resource belongs in", "type": "string" @@ -74657,11 +78185,11 @@ "type": "string" }, "subresources": { - "description": "Subresources describes the subresources for CustomResources", + "description": "Subresources describes the subresources for CustomResource Optional, the global subresources for all versions. Top-level and per-version subresources are mutually exclusive.", "$ref": "#/definitions/v1beta1.CustomResourceSubresources" }, "validation": { - "description": "Validation describes the validation methods for CustomResources", + "description": "Validation describes the validation methods for CustomResources Optional, the global validation schema for all versions. Top-level and per-version schemas are mutually exclusive.", "$ref": "#/definitions/v1beta1.CustomResourceValidation" }, "version": { @@ -74690,6 +78218,40 @@ } } }, + "v1.ResourceQuotaList": { + "description": "ResourceQuotaList is a list of ResourceQuota items.", + "required": [ + "items" + ], + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", + "type": "array", + "items": { + "$ref": "#/definitions/v1.ResourceQuota" + } + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "$ref": "#/definitions/v1.ListMeta" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "", + "kind": "ResourceQuotaList", + "version": "v1" + } + ] + }, "v1.RoleBindingList": { "description": "RoleBindingList is a collection of RoleBindings", "required": [ @@ -74852,6 +78414,25 @@ } } }, + "v1alpha1.Policy": { + "description": "Policy defines the configuration of how audit events are logged", + "required": [ + "level" + ], + "properties": { + "level": { + "description": "The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required", + "type": "string" + }, + "stages": { + "description": "Stages is a list of stages for which events are created.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, "v1.VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { @@ -75194,22 +78775,40 @@ } } }, - "v1.PersistentVolumeStatus": { - "description": "PersistentVolumeStatus is the current status of a persistent volume.", + "v1.VolumeAttachment": { + "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", + "required": [ + "spec" + ], "properties": { - "message": { - "description": "A human-readable message indicating details about why the volume is in this state.", + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", "type": "string" }, - "phase": { - "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", "type": "string" }, - "reason": { - "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", - "type": "string" + "metadata": { + "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + "$ref": "#/definitions/v1.ObjectMeta" + }, + "spec": { + "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.", + "$ref": "#/definitions/v1.VolumeAttachmentSpec" + }, + "status": { + "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.", + "$ref": "#/definitions/v1.VolumeAttachmentStatus" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + ] }, "v1.ContainerPort": { "description": "ContainerPort represents a network port in a single container.", @@ -75411,35 +79010,38 @@ } } }, - "v1beta1.UserInfo": { - "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", + "v1alpha1.AuditSinkList": { + "description": "AuditSinkList is a list of AuditSink items.", + "required": [ + "items" + ], "properties": { - "extra": { - "description": "Any additional information provided by the authenticator.", - "type": "object", - "additionalProperties": { - "type": "array", - "items": { - "type": "string" - } - } + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" }, - "groups": { - "description": "The names of groups this user is a part of.", + "items": { + "description": "List of audit configurations.", "type": "array", "items": { - "type": "string" + "$ref": "#/definitions/v1alpha1.AuditSink" } }, - "uid": { - "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", "type": "string" }, - "username": { - "description": "The name that uniquely identifies this user among all active users.", - "type": "string" + "metadata": { + "$ref": "#/definitions/v1.ListMeta" } - } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "auditregistration.k8s.io", + "kind": "AuditSinkList", + "version": "v1alpha1" + } + ] }, "v1.ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", @@ -75779,18 +79381,6 @@ } ] }, - "v1.LoadBalancerStatus": { - "description": "LoadBalancerStatus represents the status of a load-balancer.", - "properties": { - "ingress": { - "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", - "type": "array", - "items": { - "$ref": "#/definitions/v1.LoadBalancerIngress" - } - } - } - }, "v1.Initializer": { "description": "Initializer is information about an initializer that has not yet completed.", "required": [ @@ -75922,6 +79512,23 @@ } } }, + "v1.PersistentVolumeStatus": { + "description": "PersistentVolumeStatus is the current status of a persistent volume.", + "properties": { + "message": { + "description": "A human-readable message indicating details about why the volume is in this state.", + "type": "string" + }, + "phase": { + "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", + "type": "string" + }, + "reason": { + "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", + "type": "string" + } + } + }, "v1.SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { @@ -76081,6 +79688,41 @@ } } }, + "v1beta1.CustomResourceColumnDefinition": { + "description": "CustomResourceColumnDefinition specifies a column for server side printing.", + "required": [ + "name", + "type", + "JSONPath" + ], + "properties": { + "JSONPath": { + "description": "JSONPath is a simple JSON path, i.e. with array notation.", + "type": "string" + }, + "description": { + "description": "description is a human readable description of this column.", + "type": "string" + }, + "format": { + "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.", + "type": "string" + }, + "name": { + "description": "name is a human readable name for the column.", + "type": "string" + }, + "priority": { + "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a higher priority.", + "type": "integer", + "format": "int32" + }, + "type": { + "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.", + "type": "string" + } + } + }, "v1.StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { @@ -76625,40 +80267,6 @@ } } }, - "v1beta1.SubjectAccessReview": { - "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", - "required": [ - "spec" - ], - "properties": { - "apiVersion": { - "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", - "type": "string" - }, - "kind": { - "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", - "type": "string" - }, - "metadata": { - "$ref": "#/definitions/v1.ObjectMeta" - }, - "spec": { - "description": "Spec holds information about the request being evaluated", - "$ref": "#/definitions/v1beta1.SubjectAccessReviewSpec" - }, - "status": { - "description": "Status is filled in by the server and indicates whether the request is allowed or not", - "$ref": "#/definitions/v1beta1.SubjectAccessReviewStatus" - } - }, - "x-kubernetes-group-version-kind": [ - { - "group": "authorization.k8s.io", - "kind": "SubjectAccessReview", - "version": "v1beta1" - } - ] - }, "v1.Scale": { "description": "Scale represents a scaling request for a resource.", "properties": { @@ -76806,6 +80414,11 @@ "kind": "WatchEvent", "version": "v1beta2" }, + { + "group": "auditregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "WatchEvent", @@ -77037,6 +80650,24 @@ } ] }, + "admissionregistration.v1beta1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", + "properties": { + "caBundle": { + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "type": "string", + "format": "byte" + }, + "service": { + "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.\n\nPort 443 will be used if it is open, otherwise it is an error.", + "$ref": "#/definitions/admissionregistration.v1beta1.ServiceReference" + }, + "url": { + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + } + }, "v1.RollingUpdateDeployment": { "description": "Spec to control the desired behavior of rolling update.", "properties": { @@ -77322,6 +80953,10 @@ "type": "string" } }, + "runAsGroup": { + "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.", + "$ref": "#/definitions/policy.v1beta1.RunAsGroupStrategyOptions" + }, "runAsUser": { "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.", "$ref": "#/definitions/policy.v1beta1.RunAsUserStrategyOptions" @@ -77379,35 +81014,19 @@ } } }, - "v1beta1.SubjectRulesReviewStatus": { - "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + "v1alpha1.Webhook": { + "description": "Webhook holds the configuration of the webhook", "required": [ - "resourceRules", - "nonResourceRules", - "incomplete" + "clientConfig" ], "properties": { - "evaluationError": { - "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", - "type": "string" + "clientConfig": { + "description": "ClientConfig holds the connection parameters for the webhook required", + "$ref": "#/definitions/v1alpha1.WebhookClientConfig" }, - "incomplete": { - "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", - "type": "boolean" - }, - "nonResourceRules": { - "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "type": "array", - "items": { - "$ref": "#/definitions/v1beta1.NonResourceRule" - } - }, - "resourceRules": { - "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", - "type": "array", - "items": { - "$ref": "#/definitions/v1beta1.ResourceRule" - } + "throttle": { + "description": "Throttle holds the options for throttling the webhook", + "$ref": "#/definitions/v1alpha1.WebhookThrottleConfig" } } }, @@ -77593,6 +81212,11 @@ "kind": "DeleteOptions", "version": "v1beta2" }, + { + "group": "auditregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", @@ -77895,6 +81519,13 @@ "v1.TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "type": "array", + "items": { + "type": "string" + } + }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" @@ -77972,6 +81603,13 @@ "v1beta1.TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "type": "array", + "items": { + "type": "string" + } + }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" @@ -78320,7 +81958,7 @@ "properties": { "clientConfig": { "description": "ClientConfig defines how to communicate with the hook. Required", - "$ref": "#/definitions/v1beta1.WebhookClientConfig" + "$ref": "#/definitions/admissionregistration.v1beta1.WebhookClientConfig" }, "failurePolicy": { "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", @@ -78485,15 +82123,17 @@ } } }, - "v1.ExecAction": { - "description": "ExecAction describes a \"run in container\" action.", + "v1.VolumeError": { + "description": "VolumeError captures an error encountered during a volume operation.", "properties": { - "command": { - "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", - "type": "array", - "items": { - "type": "string" - } + "message": { + "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", + "type": "string" + }, + "time": { + "description": "Time the error was encountered.", + "type": "string", + "format": "date-time" } } }, @@ -79861,6 +83501,7 @@ }, "strategy": { "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", "$ref": "#/definitions/v1.DeploymentStrategy" }, "template": { @@ -79920,6 +83561,15 @@ } } }, + "v1.VolumeAttachmentSource": { + "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", + "properties": { + "persistentVolumeName": { + "description": "Name of the persistent volume to attach.", + "type": "string" + } + } + }, "v1beta2.StatefulSetUpdateStrategy": { "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "properties": { @@ -79960,7 +83610,7 @@ "type": "string" }, "volumeMode": { - "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future.", + "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is a beta feature.", "type": "string" }, "volumeName": { @@ -80209,6 +83859,31 @@ } } }, + "v1.GlusterfsPersistentVolumeSource": { + "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", + "required": [ + "endpoints", + "path" + ], + "properties": { + "endpoints": { + "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "endpointsNamespace": { + "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "path": { + "description": "Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "readOnly": { + "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "boolean" + } + } + }, "v1.NetworkPolicyEgressRule": { "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", "properties": { @@ -80465,6 +84140,25 @@ } ] }, + "extensions.v1beta1.RunAsGroupStrategyOptions": { + "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsGroupStrategyOptions from policy API Group instead.", + "required": [ + "rule" + ], + "properties": { + "ranges": { + "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", + "type": "array", + "items": { + "$ref": "#/definitions/extensions.v1beta1.IDRange" + } + }, + "rule": { + "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", + "type": "string" + } + } + }, "v1.PodTemplateList": { "description": "PodTemplateList is a list of PodTemplates.", "required": [ @@ -80500,7 +84194,7 @@ ] }, "v1.OwnerReference": { - "description": "OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.", + "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "required": [ "apiVersion", "kind", @@ -80744,6 +84438,46 @@ } } }, + "v1beta1.CronJobSpec": { + "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "required": [ + "schedule", + "jobTemplate" + ], + "properties": { + "concurrencyPolicy": { + "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", + "type": "string" + }, + "failedJobsHistoryLimit": { + "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + "type": "integer", + "format": "int32" + }, + "jobTemplate": { + "description": "Specifies the job that will be created when executing a CronJob.", + "$ref": "#/definitions/v1beta1.JobTemplateSpec" + }, + "schedule": { + "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + "type": "string" + }, + "startingDeadlineSeconds": { + "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", + "type": "integer", + "format": "int64" + }, + "successfulJobsHistoryLimit": { + "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", + "type": "integer", + "format": "int32" + }, + "suspend": { + "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + "type": "boolean" + } + } + }, "v1beta1.CertificateSigningRequestList": { "required": [ "items" @@ -81076,6 +84810,22 @@ } ] }, + "v1beta1.CustomResourceConversion": { + "description": "CustomResourceConversion describes how to convert different versions of a CR.", + "required": [ + "strategy" + ], + "properties": { + "strategy": { + "description": "`strategy` specifies the conversion strategy. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the CR. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information is needed for this option.", + "type": "string" + }, + "webhookClientConfig": { + "description": "`webhookClientConfig` is the instructions for how to call the webhook if strategy is `Webhook`. This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.", + "$ref": "#/definitions/apiextensions.v1beta1.WebhookClientConfig" + } + } + }, "v1beta2.DeploymentCondition": { "description": "DeploymentCondition describes the state of a deployment at a certain point.", "required": [ @@ -81212,30 +84962,6 @@ } } }, - "v1beta1.SubjectAccessReviewStatus": { - "description": "SubjectAccessReviewStatus", - "required": [ - "allowed" - ], - "properties": { - "allowed": { - "description": "Allowed is required. True if the action would be allowed, false otherwise.", - "type": "boolean" - }, - "denied": { - "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", - "type": "boolean" - }, - "evaluationError": { - "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", - "type": "string" - }, - "reason": { - "description": "Reason is optional. It indicates why a request was allowed or denied.", - "type": "string" - } - } - }, "v1.DeploymentList": { "description": "DeploymentList is a list of Deployments.", "required": [ @@ -81270,6 +84996,21 @@ } ] }, + "v1alpha1.WebhookThrottleConfig": { + "description": "WebhookThrottleConfig holds the configuration for throttling events", + "properties": { + "burst": { + "description": "ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS", + "type": "integer", + "format": "int64" + }, + "qps": { + "description": "ThrottleQPS maximum number of batches per second default 10 QPS", + "type": "integer", + "format": "int64" + } + } + }, "v1.Initializers": { "description": "Initializers tracks the progress of initialization.", "required": [ @@ -81830,43 +85571,20 @@ } } }, - "v1beta1.CronJobSpec": { - "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", + "v1alpha1.AuditSinkSpec": { + "description": "AuditSinkSpec holds the spec for the audit sink", "required": [ - "schedule", - "jobTemplate" + "policy", + "webhook" ], "properties": { - "concurrencyPolicy": { - "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", - "type": "string" + "policy": { + "description": "Policy defines the policy for selecting which events should be sent to the webhook required", + "$ref": "#/definitions/v1alpha1.Policy" }, - "failedJobsHistoryLimit": { - "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", - "type": "integer", - "format": "int32" - }, - "jobTemplate": { - "description": "Specifies the job that will be created when executing a CronJob.", - "$ref": "#/definitions/v1beta1.JobTemplateSpec" - }, - "schedule": { - "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", - "type": "string" - }, - "startingDeadlineSeconds": { - "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", - "type": "integer", - "format": "int64" - }, - "successfulJobsHistoryLimit": { - "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", - "type": "integer", - "format": "int32" - }, - "suspend": { - "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", - "type": "boolean" + "webhook": { + "description": "Webhook to send events required", + "$ref": "#/definitions/v1alpha1.Webhook" } } }, @@ -81887,6 +85605,27 @@ } } }, + "v1alpha1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "required": [ + "namespace", + "name" + ], + "properties": { + "name": { + "description": "`name` is the name of the service. Required", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of the service. Required", + "type": "string" + }, + "path": { + "description": "`path` is an optional URL path which will be sent in any request to this service.", + "type": "string" + } + } + }, "v1beta2.DaemonSetList": { "description": "DaemonSetList is a collection of daemon sets.", "required": [ @@ -82191,6 +85930,25 @@ } } }, + "policy.v1beta1.RunAsGroupStrategyOptions": { + "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.", + "required": [ + "rule" + ], + "properties": { + "ranges": { + "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", + "type": "array", + "items": { + "$ref": "#/definitions/policy.v1beta1.IDRange" + } + }, + "rule": { + "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", + "type": "string" + } + } + }, "v1beta1.ClusterRoleList": { "description": "ClusterRoleList is a collection of ClusterRoles", "required": [ @@ -82387,27 +86145,6 @@ } ] }, - "v1beta1.WebhookClientConfig": { - "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", - "required": [ - "caBundle" - ], - "properties": { - "caBundle": { - "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. Required.", - "type": "string", - "format": "byte" - }, - "service": { - "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.\n\nPort 443 will be used if it is open, otherwise it is an error.", - "$ref": "#/definitions/admissionregistration.v1beta1.ServiceReference" - }, - "url": { - "description": "`url` gives the location of the webhook, in standard URL form (`[scheme://]host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", - "type": "string" - } - } - }, "v1.Handler": { "description": "Handler defines a specific action that should be taken", "properties": { @@ -82530,7 +86267,7 @@ ], "properties": { "controllerPublishSecretRef": { - "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/v1.SecretReference" }, "driver": { @@ -82542,11 +86279,11 @@ "type": "string" }, "nodePublishSecretRef": { - "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/v1.SecretReference" }, "nodeStageSecretRef": { - "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/v1.SecretReference" }, "readOnly": { @@ -82862,7 +86599,7 @@ ], "properties": { "caBundle": { - "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.", + "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string", "format": "byte" }, @@ -83026,6 +86763,28 @@ "type": "string", "format": "int-or-string" }, + "v1.VolumeAttachmentSpec": { + "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", + "required": [ + "attacher", + "source", + "nodeName" + ], + "properties": { + "attacher": { + "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", + "type": "string" + }, + "nodeName": { + "description": "The node that the volume should be attached to.", + "type": "string" + }, + "source": { + "description": "Source represents the volume that should be attached.", + "$ref": "#/definitions/v1.VolumeAttachmentSource" + } + } + }, "v1beta1.StorageClassList": { "description": "StorageClassList is a collection of storage classes.", "required": [ @@ -83227,6 +86986,10 @@ "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, + "enableServiceLinks": { + "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.", + "type": "boolean" + }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "type": "array", @@ -83460,7 +87223,7 @@ ], "properties": { "caBundle": { - "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.", + "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string", "format": "byte" }, @@ -83563,17 +87326,54 @@ } } }, + "v1.AWSElasticBlockStoreVolumeSource": { + "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", + "required": [ + "volumeID" + ], + "properties": { + "fsType": { + "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "type": "string" + }, + "partition": { + "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", + "type": "integer", + "format": "int32" + }, + "readOnly": { + "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "type": "boolean" + }, + "volumeID": { + "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + "type": "string" + } + } + }, "v1beta1.CustomResourceDefinitionVersion": { + "description": "CustomResourceDefinitionVersion describes a version for CRD.", "required": [ "name", "served", "storage" ], "properties": { + "additionalPrinterColumns": { + "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. NOTE: CRDs created prior to 1.13 populated the top-level additionalPrinterColumns field by default. To apply an update that changes to per-version additionalPrinterColumns, the top-level additionalPrinterColumns field must be explicitly set to null", + "type": "array", + "items": { + "$ref": "#/definitions/v1beta1.CustomResourceColumnDefinition" + } + }, "name": { "description": "Name is the version name, e.g. \u201cv1\u201d, \u201cv2beta1\u201d, etc.", "type": "string" }, + "schema": { + "description": "Schema describes the schema for CustomResource used in validation, pruning, and defaulting. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.", + "$ref": "#/definitions/v1beta1.CustomResourceValidation" + }, "served": { "description": "Served is a flag enabling/disabling this version from being served via REST APIs", "type": "boolean" @@ -83581,41 +87381,22 @@ "storage": { "description": "Storage flags the version as storage version. There must be exactly one flagged as storage version.", "type": "boolean" + }, + "subresources": { + "description": "Subresources describes the subresources for CustomResource Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.", + "$ref": "#/definitions/v1beta1.CustomResourceSubresources" } } }, - "v1beta1.CustomResourceColumnDefinition": { - "description": "CustomResourceColumnDefinition specifies a column for server side printing.", - "required": [ - "name", - "type", - "JSONPath" - ], + "v1.ExecAction": { + "description": "ExecAction describes a \"run in container\" action.", "properties": { - "JSONPath": { - "description": "JSONPath is a simple JSON path, i.e. with array notation.", - "type": "string" - }, - "description": { - "description": "description is a human readable description of this column.", - "type": "string" - }, - "format": { - "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.", - "type": "string" - }, - "name": { - "description": "name is a human readable name for the column.", - "type": "string" - }, - "priority": { - "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a higher priority.", - "type": "integer", - "format": "int32" - }, - "type": { - "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.", - "type": "string" + "command": { + "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + "type": "array", + "items": { + "type": "string" + } } } }, @@ -83978,6 +87759,7 @@ }, "strategy": { "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", "$ref": "#/definitions/v1beta2.DeploymentStrategy" }, "template": { @@ -84502,31 +88284,6 @@ } ] }, - "v1.AWSElasticBlockStoreVolumeSource": { - "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", - "required": [ - "volumeID" - ], - "properties": { - "fsType": { - "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", - "type": "string" - }, - "partition": { - "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", - "type": "integer", - "format": "int32" - }, - "readOnly": { - "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", - "type": "boolean" - }, - "volumeID": { - "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", - "type": "string" - } - } - }, "v1alpha1.InitializerConfigurationList": { "description": "InitializerConfigurationList is a list of InitializerConfiguration.", "required": [ @@ -84820,6 +88577,13 @@ "v1.TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", + "type": "array", + "items": { + "type": "string" + } + }, "token": { "description": "Token is the opaque bearer token.", "type": "string" @@ -84847,6 +88611,40 @@ } } }, + "v1.VolumeAttachmentList": { + "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", + "required": [ + "items" + ], + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of VolumeAttachments", + "type": "array", + "items": { + "$ref": "#/definitions/v1.VolumeAttachment" + } + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + "$ref": "#/definitions/v1.ListMeta" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttachmentList", + "version": "v1" + } + ] + }, "v1.ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "required": [ @@ -84991,6 +88789,13 @@ "v1beta1.TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", + "type": "array", + "items": { + "type": "string" + } + }, "token": { "description": "Token is the opaque bearer token.", "type": "string" @@ -85040,6 +88845,40 @@ } } }, + "v1beta1.SubjectAccessReview": { + "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", + "required": [ + "spec" + ], + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/definitions/v1.ObjectMeta" + }, + "spec": { + "description": "Spec holds information about the request being evaluated", + "$ref": "#/definitions/v1beta1.SubjectAccessReviewSpec" + }, + "status": { + "description": "Status is filled in by the server and indicates whether the request is allowed or not", + "$ref": "#/definitions/v1beta1.SubjectAccessReviewStatus" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "authorization.k8s.io", + "kind": "SubjectAccessReview", + "version": "v1beta1" + } + ] + }, "v1beta2.ScaleSpec": { "description": "ScaleSpec describes the attributes of a scale subresource", "properties": { diff --git a/src/KubernetesClient/generated/swagger.json.unprocessed b/src/KubernetesClient/generated/swagger.json.unprocessed index 5ea4400..12336ef 100644 --- a/src/KubernetesClient/generated/swagger.json.unprocessed +++ b/src/KubernetesClient/generated/swagger.json.unprocessed @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "Kubernetes", - "version": "v1.12.0" + "version": "v1.13.0" }, "paths": { "/api/": { @@ -680,13 +680,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -766,6 +759,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Namespace" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -799,6 +799,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -867,6 +874,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -919,13 +940,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1005,6 +1019,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1069,13 +1090,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1131,6 +1145,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -1225,6 +1246,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMap" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1272,7 +1300,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -1357,6 +1384,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1438,13 +1472,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1524,6 +1551,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1588,13 +1622,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -1650,6 +1677,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -1744,6 +1778,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Endpoints" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1791,7 +1832,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -1876,6 +1916,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -1957,13 +2004,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2043,6 +2083,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2107,13 +2154,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2169,6 +2209,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -2263,6 +2310,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2310,7 +2364,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -2395,6 +2448,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2476,13 +2536,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2562,6 +2615,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2626,13 +2686,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -2688,6 +2741,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -2782,6 +2842,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.LimitRange" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2829,7 +2896,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -2914,6 +2980,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -2995,13 +3068,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3081,6 +3147,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3145,13 +3218,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3207,6 +3273,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -3301,6 +3374,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3348,7 +3428,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -3433,6 +3512,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3540,6 +3626,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolumeClaim" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3593,6 +3686,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3674,13 +3774,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3760,6 +3853,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Pod" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -3824,13 +3924,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -3886,6 +3979,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -3980,6 +4080,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Pod" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -4027,7 +4134,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -4112,6 +4218,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -4338,6 +4451,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -4422,6 +4549,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -5365,6 +5506,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Pod" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5418,6 +5566,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5499,13 +5654,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -5585,6 +5733,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5649,13 +5804,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -5711,6 +5859,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -5805,6 +5960,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PodTemplate" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -5852,7 +6014,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -5937,6 +6098,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6018,13 +6186,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -6104,6 +6265,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6168,13 +6336,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -6230,6 +6391,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -6324,6 +6492,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6371,7 +6546,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -6456,6 +6630,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6563,6 +6744,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6616,6 +6804,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6723,6 +6918,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ReplicationController" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6776,6 +6978,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -6857,13 +7066,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -6943,6 +7145,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7007,13 +7216,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -7069,6 +7271,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -7163,6 +7372,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7210,7 +7426,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -7295,6 +7510,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7402,6 +7624,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ResourceQuota" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7455,6 +7684,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7536,13 +7772,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -7622,6 +7851,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Secret" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7686,13 +7922,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -7748,6 +7977,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -7842,6 +8078,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Secret" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -7889,7 +8132,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -7974,6 +8216,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8055,13 +8304,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -8141,6 +8383,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8205,13 +8454,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -8267,6 +8509,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -8361,6 +8610,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.ServiceAccount" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8408,7 +8664,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -8493,6 +8748,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8574,13 +8836,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -8660,6 +8915,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Service" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8693,6 +8955,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -8787,6 +9056,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Service" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -8834,7 +9110,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -8919,6 +9194,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9550,6 +9832,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Service" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9603,6 +9892,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9726,6 +10022,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Namespace" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9773,7 +10076,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -9858,6 +10160,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -9949,6 +10258,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -10027,6 +10343,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Namespace" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10080,6 +10403,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10153,13 +10483,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -10239,6 +10562,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Node" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10303,13 +10633,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -10365,6 +10688,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -10451,6 +10781,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Node" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -10498,7 +10835,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -10583,6 +10919,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11190,6 +11533,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.Node" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11243,6 +11593,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11420,13 +11777,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -11506,6 +11856,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11570,13 +11927,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -11632,6 +11982,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -11718,6 +12075,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11765,7 +12129,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -11850,6 +12213,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -11949,6 +12319,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.core.v1.PersistentVolume" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -12002,6 +12379,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17582,13 +17966,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -17668,6 +18045,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17732,13 +18116,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -17794,6 +18171,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -17880,6 +18264,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -17927,7 +18318,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -18012,6 +18402,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18334,13 +18731,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -18420,6 +18810,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18484,13 +18881,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -18546,6 +18936,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -18632,6 +19029,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.MutatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18679,7 +19083,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -18764,6 +19167,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18837,13 +19247,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -18923,6 +19326,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -18987,13 +19397,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -19049,6 +19452,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -19135,6 +19545,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ValidatingWebhookConfiguration" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19182,7 +19599,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -19267,6 +19683,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19838,13 +20261,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -19924,6 +20340,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -19988,13 +20411,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -20050,6 +20466,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -20136,6 +20559,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20183,7 +20613,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -20268,6 +20697,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20367,6 +20803,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20420,6 +20863,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20775,13 +21225,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -20861,6 +21304,13 @@ "schema": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -20925,13 +21375,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -20987,6 +21430,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -21073,6 +21523,13 @@ "schema": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21120,7 +21577,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -21205,6 +21661,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21304,6 +21767,13 @@ "schema": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21357,6 +21827,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21679,13 +22156,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -21765,6 +22235,13 @@ "schema": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -21829,13 +22306,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -21891,6 +22361,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -21977,6 +22454,13 @@ "schema": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22024,7 +22508,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -22109,6 +22592,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22208,6 +22698,13 @@ "schema": { "$ref": "#/definitions/io.k8s.kube-aggregator.pkg.apis.apiregistration.v1beta1.APIService" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22261,6 +22758,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -22928,13 +23432,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23014,6 +23511,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23078,13 +23582,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23140,6 +23637,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -23234,6 +23738,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23281,7 +23792,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -23366,6 +23876,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23447,13 +23964,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23533,6 +24043,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23597,13 +24114,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -23659,6 +24169,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -23753,6 +24270,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23800,7 +24324,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -23885,6 +24408,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -23992,6 +24522,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24045,6 +24582,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24126,13 +24670,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -24212,6 +24749,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24276,13 +24820,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -24338,6 +24875,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -24432,6 +24976,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24479,7 +25030,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -24564,6 +25114,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24671,6 +25228,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24724,6 +25288,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24831,6 +25402,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24884,6 +25462,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -24965,13 +25550,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -25051,6 +25629,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25115,13 +25700,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -25177,6 +25755,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -25271,6 +25856,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25318,7 +25910,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -25403,6 +25994,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25510,6 +26108,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25563,6 +26168,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25670,6 +26282,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25723,6 +26342,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25804,13 +26430,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -25890,6 +26509,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -25954,13 +26580,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -26016,6 +26635,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -26110,6 +26736,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26157,7 +26790,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -26242,6 +26874,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26349,6 +26988,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26402,6 +27048,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26509,6 +27162,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -26562,6 +27222,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28772,13 +29439,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -28858,6 +29518,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -28922,13 +29589,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -28984,6 +29644,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -29078,6 +29745,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29125,7 +29799,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -29210,6 +29883,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29291,13 +29971,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -29377,6 +30050,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29441,13 +30121,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -29503,6 +30176,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -29597,6 +30277,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29644,7 +30331,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -29729,6 +30415,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29807,19 +30500,19 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "201": { "description": "Created", "schema": { - "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { - "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStatus" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { @@ -29834,6 +30527,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -29920,6 +30627,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -29973,6 +30687,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30080,6 +30801,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30133,6 +30861,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30214,13 +30949,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -30300,6 +31028,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30364,13 +31099,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -30426,6 +31154,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -30520,6 +31255,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30567,7 +31309,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -30652,6 +31393,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30759,6 +31507,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30812,6 +31567,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30919,6 +31681,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta1.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -30972,6 +31741,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32510,13 +33286,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -32596,6 +33365,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32660,13 +33436,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -32722,6 +33491,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -32816,6 +33592,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ControllerRevision" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -32863,7 +33646,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -32948,6 +33730,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33029,13 +33818,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -33115,6 +33897,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33179,13 +33968,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -33241,6 +34023,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -33335,6 +34124,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33382,7 +34178,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -33467,6 +34262,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33574,6 +34376,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33627,6 +34436,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33708,13 +34524,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -33794,6 +34603,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -33858,13 +34674,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -33920,6 +34729,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -34014,6 +34830,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34061,7 +34884,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -34146,6 +34968,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34253,6 +35082,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34306,6 +35142,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34413,6 +35256,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34466,6 +35316,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34547,13 +35404,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -34633,6 +35483,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34697,13 +35554,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -34759,6 +35609,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -34853,6 +35710,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -34900,7 +35764,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -34985,6 +35848,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35092,6 +35962,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35145,6 +36022,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35252,6 +36136,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35305,6 +36196,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35386,13 +36284,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -35472,6 +36363,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35536,13 +36434,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -35598,6 +36489,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -35692,6 +36590,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35739,7 +36644,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -35824,6 +36728,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35931,6 +36842,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -35984,6 +36902,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36091,6 +37016,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.apps.v1beta2.StatefulSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -36144,6 +37076,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -38078,6 +39017,804 @@ } ] }, + "/apis/auditregistration.k8s.io/": { + "get": { + "description": "get information of a group", + "consumes": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration" + ], + "operationId": "getAuditregistrationAPIGroup", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" + } + }, + "401": { + "description": "Unauthorized" + } + } + } + }, + "/apis/auditregistration.k8s.io/v1alpha1/": { + "get": { + "description": "get available resources", + "consumes": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "getAuditregistrationV1alpha1APIResources", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" + } + }, + "401": { + "description": "Unauthorized" + } + } + } + }, + "/apis/auditregistration.k8s.io/v1alpha1/auditsinks": { + "get": { + "description": "list or watch objects of kind AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "listAuditregistrationV1alpha1AuditSink", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSinkList" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "post": { + "description": "create an AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "createAuditregistrationV1alpha1AuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "delete": { + "description": "delete collection of AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "deleteAuditregistrationV1alpha1CollectionAuditSink", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{name}": { + "get": { + "description": "read the specified AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "readAuditregistrationV1alpha1AuditSink", + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", + "name": "exact", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Should this value be exported. Export strips fields that a user can not specify.", + "name": "export", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "put": { + "description": "replace the specified AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "replaceAuditregistrationV1alpha1AuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "delete": { + "description": "delete an AuditSink", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "deleteAuditregistrationV1alpha1AuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "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.", + "name": "gracePeriodSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "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.", + "name": "orphanDependents", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", + "name": "propagationPolicy", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "patch": { + "description": "partially update the specified AuditSink", + "consumes": [ + "application/json-patch+json", + "application/merge-patch+json", + "application/strategic-merge-patch+json" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "patchAuditregistrationV1alpha1AuditSink", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "name of the AuditSink", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks": { + "get": { + "description": "watch individual changes to a list of AuditSink. deprecated: use the 'watch' parameter with a list operation instead.", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "watchAuditregistrationV1alpha1AuditSinkList", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, + "/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/{name}": { + "get": { + "description": "watch changes to an object of kind AuditSink. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "auditregistration_v1alpha1" + ], + "operationId": "watchAuditregistrationV1alpha1AuditSink", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "name of the AuditSink", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, "/apis/authentication.k8s.io/": { "get": { "description": "get information of a group", @@ -38203,6 +39940,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38304,6 +40055,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38438,6 +40203,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38514,6 +40293,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38582,6 +40375,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38650,6 +40457,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38751,6 +40572,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38827,6 +40662,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38895,6 +40744,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -38963,6 +40826,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -39177,13 +41054,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -39263,6 +41133,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39327,13 +41204,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -39389,6 +41259,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -39483,6 +41360,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39530,7 +41414,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -39615,6 +41498,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39722,6 +41612,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -39775,6 +41672,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40329,13 +42233,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -40415,6 +42312,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40479,13 +42383,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -40541,6 +42438,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -40635,6 +42539,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40682,7 +42593,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -40767,6 +42677,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40874,6 +42791,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta1.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -40927,6 +42851,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41481,13 +43412,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -41567,6 +43491,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41631,13 +43562,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -41693,6 +43617,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -41787,6 +43718,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -41834,7 +43772,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -41919,6 +43856,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42026,6 +43970,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.autoscaling.v2beta2.HorizontalPodAutoscaler" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42079,6 +44030,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42666,13 +44624,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -42752,6 +44703,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v1.Job" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -42816,13 +44774,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -42878,6 +44829,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -42972,6 +44930,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v1.Job" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43019,7 +44984,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -43104,6 +45068,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43211,6 +45182,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v1.Job" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43264,6 +45242,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43818,13 +45803,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -43904,6 +45882,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -43968,13 +45953,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -44030,6 +46008,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -44124,6 +46109,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -44171,7 +46163,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -44256,6 +46247,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -44363,6 +46361,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v1beta1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -44416,6 +46421,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -44970,13 +46982,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -45056,6 +47061,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45120,13 +47132,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -45182,6 +47187,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -45276,6 +47288,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45323,7 +47342,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -45408,6 +47426,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45515,6 +47540,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.batch.v2alpha1.CronJob" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -45568,6 +47600,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46051,13 +48090,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -46137,6 +48169,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46201,13 +48240,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -46263,6 +48295,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -46349,6 +48388,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46396,7 +48442,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -46481,6 +48526,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46572,6 +48624,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -46650,6 +48709,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.certificates.v1beta1.CertificateSigningRequest" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -46703,6 +48769,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47162,13 +49235,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -47248,6 +49314,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47312,13 +49385,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -47374,6 +49440,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -47468,6 +49541,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.coordination.v1beta1.Lease" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -47515,7 +49595,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -47600,6 +49679,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48187,13 +50273,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -48273,6 +50352,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48337,13 +50423,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -48399,6 +50478,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -48493,6 +50579,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.events.v1beta1.Event" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -48540,7 +50633,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -48625,6 +50717,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -49420,13 +51519,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -49506,6 +51598,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -49570,13 +51669,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -49632,6 +51724,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -49726,6 +51825,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -49773,7 +51879,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -49858,6 +51963,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -49965,6 +52077,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DaemonSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50018,6 +52137,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50099,13 +52225,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -50185,6 +52304,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50249,13 +52375,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -50311,6 +52430,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -50405,6 +52531,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50452,7 +52585,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -50537,6 +52669,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50615,19 +52754,19 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "201": { "description": "Created", "schema": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { - "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.DeploymentStatus" + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { @@ -50642,6 +52781,20 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If IncludeUninitialized is specified, the object may be returned without completing initialization.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -50728,6 +52881,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50781,6 +52941,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50888,6 +53055,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Deployment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -50941,6 +53115,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51022,13 +53203,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51108,6 +53282,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51172,13 +53353,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51234,6 +53408,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -51328,6 +53509,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51375,7 +53563,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -51460,6 +53647,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51567,6 +53761,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Ingress" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51620,6 +53821,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51701,13 +53909,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51787,6 +53988,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -51851,13 +54059,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -51913,6 +54114,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -52007,6 +54215,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52054,7 +54269,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -52139,6 +54353,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52220,13 +54441,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -52306,6 +54520,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52370,13 +54591,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -52432,6 +54646,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -52526,6 +54747,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52573,7 +54801,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -52658,6 +54885,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52765,6 +54999,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52818,6 +55059,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52925,6 +55173,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.ReplicaSet" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -52978,6 +55233,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53085,6 +55347,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.Scale" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53138,6 +55407,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53323,13 +55599,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -53409,6 +55678,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53473,13 +55749,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -53535,6 +55804,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -53621,6 +55897,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -53668,7 +55951,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -53753,6 +56035,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -55892,13 +58181,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -55978,6 +58260,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56042,13 +58331,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -56104,6 +58386,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -56198,6 +58487,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.networking.v1.NetworkPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56245,7 +58541,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -56330,6 +58625,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -56917,13 +59219,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57003,6 +59298,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57067,13 +59369,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57129,6 +59424,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -57223,6 +59525,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57270,7 +59579,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -57355,6 +59663,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57462,6 +59777,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodDisruptionBudget" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57515,6 +59837,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57700,13 +60029,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57786,6 +60108,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -57850,13 +60179,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -57912,6 +60234,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -57998,6 +60327,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.policy.v1beta1.PodSecurityPolicy" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -58045,7 +60381,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -58130,6 +60465,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -58821,13 +61163,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -58907,6 +61242,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -58971,13 +61313,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59033,6 +61368,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -59103,6 +61445,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59150,7 +61499,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -59235,6 +61583,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59308,13 +61663,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59394,6 +61742,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59458,13 +61813,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59520,6 +61868,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -59590,6 +61945,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59637,7 +61999,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -59722,6 +62083,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59795,13 +62163,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -59881,6 +62242,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -59945,13 +62313,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60007,6 +62368,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -60085,6 +62453,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60132,7 +62507,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -60217,6 +62591,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60298,13 +62679,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60384,6 +62758,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60448,13 +62829,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -60510,6 +62884,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -60588,6 +62969,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -60635,7 +63023,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -60720,6 +63107,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62146,13 +64540,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -62232,6 +64619,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62296,13 +64690,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -62358,6 +64745,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -62428,6 +64822,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62475,7 +64876,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -62560,6 +64960,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62633,13 +65040,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -62719,6 +65119,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62783,13 +65190,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -62845,6 +65245,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -62915,6 +65322,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -62962,7 +65376,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -63047,6 +65460,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63120,13 +65540,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63206,6 +65619,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63270,13 +65690,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63332,6 +65745,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -63410,6 +65830,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63457,7 +65884,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -63542,6 +65968,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63623,13 +66056,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63709,6 +66135,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63773,13 +66206,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -63835,6 +66261,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -63913,6 +66346,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1alpha1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -63960,7 +66400,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -64045,6 +66484,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65471,13 +67917,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -65557,6 +67996,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65621,13 +68067,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -65683,6 +68122,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -65753,6 +68199,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65800,7 +68253,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -65885,6 +68337,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -65958,13 +68417,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66044,6 +68496,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66108,13 +68567,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66170,6 +68622,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -66240,6 +68699,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.ClusterRole" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66287,7 +68753,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -66372,6 +68837,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66445,13 +68917,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66531,6 +68996,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66595,13 +69067,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -66657,6 +69122,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -66735,6 +69207,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.RoleBinding" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66782,7 +69261,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -66867,6 +69345,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -66948,13 +69433,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -67034,6 +69512,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -67098,13 +69583,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -67160,6 +69638,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -67238,6 +69723,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.rbac.v1beta1.Role" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -67285,7 +69777,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -67370,6 +69861,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -68829,13 +71327,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -68915,6 +71406,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -68979,13 +71477,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -69041,6 +71532,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -69127,6 +71625,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.scheduling.v1alpha1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -69174,7 +71679,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -69259,6 +71763,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -69581,13 +72092,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -69667,6 +72171,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -69731,13 +72242,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -69793,6 +72297,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -69879,6 +72390,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.scheduling.v1beta1.PriorityClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -69926,7 +72444,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -70011,6 +72528,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -70366,13 +72890,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -70452,6 +72969,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -70516,13 +73040,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -70578,6 +73095,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -70672,6 +73196,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.settings.v1alpha1.PodPreset" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -70719,7 +73250,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -70804,6 +73334,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -71391,13 +73928,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -71477,6 +74007,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -71541,13 +74078,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -71603,6 +74133,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -71689,6 +74226,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -71736,7 +74280,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -71821,6 +74364,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -71859,6 +74409,688 @@ } ] }, + "/apis/storage.k8s.io/v1/volumeattachments": { + "get": { + "description": "list or watch objects of kind VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "listStorageV1VolumeAttachment", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentList" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "list", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "post": { + "description": "create a VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "createStorageV1VolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "post", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "delete": { + "description": "delete collection of VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "deleteStorageV1CollectionVolumeAttachment", + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "deletecollection", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/storage.k8s.io/v1/volumeattachments/{name}": { + "get": { + "description": "read the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "readStorageV1VolumeAttachment", + "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", + "name": "exact", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Should this value be exported. Export strips fields that a user can not specify.", + "name": "export", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "put": { + "description": "replace the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "replaceStorageV1VolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "delete": { + "description": "delete a VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "deleteStorageV1VolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "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.", + "name": "gracePeriodSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "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.", + "name": "orphanDependents", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", + "name": "propagationPolicy", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "202": { + "description": "Accepted", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "delete", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "patch": { + "description": "partially update the specified VolumeAttachment", + "consumes": [ + "application/json-patch+json", + "application/merge-patch+json", + "application/strategic-merge-patch+json" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "patchStorageV1VolumeAttachment", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "name of the VolumeAttachment", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, + "/apis/storage.k8s.io/v1/volumeattachments/{name}/status": { + "get": { + "description": "read status of the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "readStorageV1VolumeAttachmentStatus", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "get", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "put": { + "description": "replace status of the specified VolumeAttachment", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "replaceStorageV1VolumeAttachmentStatus", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "put", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "patch": { + "description": "partially update status of the specified VolumeAttachment", + "consumes": [ + "application/json-patch+json", + "application/merge-patch+json", + "application/strategic-merge-patch+json" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "patchStorageV1VolumeAttachmentStatus", + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" + } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "patch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "name of the VolumeAttachment", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + } + ] + }, "/apis/storage.k8s.io/v1/watch/storageclasses": { "get": { "description": "watch individual changes to a list of StorageClass. deprecated: use the 'watch' parameter with a list operation instead.", @@ -72075,6 +75307,222 @@ } ] }, + "/apis/storage.k8s.io/v1/watch/volumeattachments": { + "get": { + "description": "watch individual changes to a list of VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead.", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "watchStorageV1VolumeAttachmentList", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "watchlist", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, + "/apis/storage.k8s.io/v1/watch/volumeattachments/{name}": { + "get": { + "description": "watch changes to an object of kind VolumeAttachment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", + "consumes": [ + "*/*" + ], + "produces": [ + "application/json", + "application/yaml", + "application/vnd.kubernetes.protobuf", + "application/json;stream=watch", + "application/vnd.kubernetes.protobuf;stream=watch" + ], + "schemes": [ + "https" + ], + "tags": [ + "storage_v1" + ], + "operationId": "watchStorageV1VolumeAttachment", + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" + } + }, + "401": { + "description": "Unauthorized" + } + }, + "x-kubernetes-action": "watch", + "x-kubernetes-group-version-kind": { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + }, + "parameters": [ + { + "uniqueItems": true, + "type": "string", + "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + "name": "continue", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + "name": "fieldSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + "name": "labelSelector", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + "name": "limit", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "name of the VolumeAttachment", + "name": "name", + "in": "path", + "required": true + }, + { + "uniqueItems": true, + "type": "string", + "description": "If 'true', then the output is pretty printed.", + "name": "pretty", + "in": "query" + }, + { + "uniqueItems": true, + "type": "string", + "description": "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + "name": "resourceVersion", + "in": "query" + }, + { + "uniqueItems": true, + "type": "integer", + "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", + "name": "timeoutSeconds", + "in": "query" + }, + { + "uniqueItems": true, + "type": "boolean", + "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + "name": "watch", + "in": "query" + } + ] + }, "/apis/storage.k8s.io/v1alpha1/": { "get": { "description": "get available resources", @@ -72143,13 +75591,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -72229,6 +75670,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -72293,13 +75741,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -72355,6 +75796,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -72441,6 +75889,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1alpha1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -72488,7 +75943,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -72573,6 +76027,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -72895,13 +76356,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -72981,6 +76435,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -73045,13 +76506,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -73107,6 +76561,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -73193,6 +76654,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1beta1.StorageClass" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -73240,7 +76708,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -73325,6 +76792,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -73398,13 +76872,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -73484,6 +76951,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -73548,13 +77022,6 @@ "name": "fieldSelector", "in": "query" }, - { - "uniqueItems": true, - "type": "boolean", - "description": "If true, partially initialized resources are included in the response.", - "name": "includeUninitialized", - "in": "query" - }, { "uniqueItems": true, "type": "string", @@ -73610,6 +77077,13 @@ } }, "parameters": [ + { + "uniqueItems": true, + "type": "boolean", + "description": "If true, partially initialized resources are included in the response.", + "name": "includeUninitialized", + "in": "query" + }, { "uniqueItems": true, "type": "string", @@ -73696,6 +77170,13 @@ "schema": { "$ref": "#/definitions/io.k8s.api.storage.v1beta1.VolumeAttachment" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -73743,7 +77224,6 @@ { "name": "body", "in": "body", - "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } @@ -73828,6 +77308,13 @@ "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } + }, + { + "uniqueItems": true, + "type": "string", + "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", + "name": "dryRun", + "in": "query" } ], "responses": { @@ -74709,12 +78196,9 @@ }, "io.k8s.api.admissionregistration.v1beta1.WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", - "required": [ - "caBundle" - ], "properties": { "caBundle": { - "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. Required.", + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string", "format": "byte" }, @@ -74723,7 +78207,7 @@ "$ref": "#/definitions/io.k8s.api.admissionregistration.v1beta1.ServiceReference" }, "url": { - "description": "`url` gives the location of the webhook, in standard URL form (`[scheme://]host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } } @@ -75138,6 +78622,7 @@ }, "strategy": { "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentStrategy" }, "template": { @@ -75858,6 +79343,7 @@ }, "strategy": { "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", "$ref": "#/definitions/io.k8s.api.apps.v1beta1.DeploymentStrategy" }, "template": { @@ -76643,6 +80129,7 @@ }, "strategy": { "description": "The deployment strategy to use to replace existing pods with new ones.", + "x-kubernetes-patch-strategy": "retainKeys", "$ref": "#/definitions/io.k8s.api.apps.v1beta2.DeploymentStrategy" }, "template": { @@ -77181,6 +80668,172 @@ } } }, + "io.k8s.api.auditregistration.v1alpha1.AuditSink": { + "description": "AuditSink represents a cluster level audit sink", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "Spec defines the audit configuration spec", + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "auditregistration.k8s.io", + "kind": "AuditSink", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.auditregistration.v1alpha1.AuditSinkList": { + "description": "AuditSinkList is a list of AuditSink items.", + "required": [ + "items" + ], + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "List of audit configurations.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.AuditSink" + } + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "auditregistration.k8s.io", + "kind": "AuditSinkList", + "version": "v1alpha1" + } + ] + }, + "io.k8s.api.auditregistration.v1alpha1.AuditSinkSpec": { + "description": "AuditSinkSpec holds the spec for the audit sink", + "required": [ + "policy", + "webhook" + ], + "properties": { + "policy": { + "description": "Policy defines the policy for selecting which events should be sent to the webhook required", + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.Policy" + }, + "webhook": { + "description": "Webhook to send events required", + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.Webhook" + } + } + }, + "io.k8s.api.auditregistration.v1alpha1.Policy": { + "description": "Policy defines the configuration of how audit events are logged", + "required": [ + "level" + ], + "properties": { + "level": { + "description": "The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required", + "type": "string" + }, + "stages": { + "description": "Stages is a list of stages for which events are created.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "io.k8s.api.auditregistration.v1alpha1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "required": [ + "namespace", + "name" + ], + "properties": { + "name": { + "description": "`name` is the name of the service. Required", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of the service. Required", + "type": "string" + }, + "path": { + "description": "`path` is an optional URL path which will be sent in any request to this service.", + "type": "string" + } + } + }, + "io.k8s.api.auditregistration.v1alpha1.Webhook": { + "description": "Webhook holds the configuration of the webhook", + "required": [ + "clientConfig" + ], + "properties": { + "clientConfig": { + "description": "ClientConfig holds the connection parameters for the webhook required", + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.WebhookClientConfig" + }, + "throttle": { + "description": "Throttle holds the options for throttling the webhook", + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig" + } + } + }, + "io.k8s.api.auditregistration.v1alpha1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a connection with the webhook", + "properties": { + "caBundle": { + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "type": "string", + "format": "byte" + }, + "service": { + "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.\n\nPort 443 will be used if it is open, otherwise it is an error.", + "$ref": "#/definitions/io.k8s.api.auditregistration.v1alpha1.ServiceReference" + }, + "url": { + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + } + }, + "io.k8s.api.auditregistration.v1alpha1.WebhookThrottleConfig": { + "description": "WebhookThrottleConfig holds the configuration for throttling events", + "properties": { + "burst": { + "description": "ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS", + "type": "integer", + "format": "int64" + }, + "qps": { + "description": "ThrottleQPS maximum number of batches per second default 10 QPS", + "type": "integer", + "format": "int64" + } + } + }, "io.k8s.api.authentication.v1.TokenReview": { "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", "required": [ @@ -77218,6 +80871,13 @@ "io.k8s.api.authentication.v1.TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", + "type": "array", + "items": { + "type": "string" + } + }, "token": { "description": "Token is the opaque bearer token.", "type": "string" @@ -77227,6 +80887,13 @@ "io.k8s.api.authentication.v1.TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "type": "array", + "items": { + "type": "string" + } + }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" @@ -77308,6 +80975,13 @@ "io.k8s.api.authentication.v1beta1.TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", + "type": "array", + "items": { + "type": "string" + } + }, "token": { "description": "Token is the opaque bearer token.", "type": "string" @@ -77317,6 +80991,13 @@ "io.k8s.api.authentication.v1beta1.TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { + "audiences": { + "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", + "type": "array", + "items": { + "type": "string" + } + }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" @@ -80028,7 +83709,7 @@ ], "properties": { "controllerPublishSecretRef": { - "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "driver": { @@ -80040,11 +83721,11 @@ "type": "string" }, "nodePublishSecretRef": { - "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "nodeStageSecretRef": { - "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", + "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.", "$ref": "#/definitions/io.k8s.api.core.v1.SecretReference" }, "readOnly": { @@ -80546,6 +84227,11 @@ "items": { "$ref": "#/definitions/io.k8s.api.core.v1.ContainerPort" }, + "x-kubernetes-list-map-keys": [ + "containerPort", + "protocol" + ], + "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, @@ -80582,7 +84268,7 @@ "type": "boolean" }, "volumeDevices": { - "description": "volumeDevices is the list of block devices to be used by the container. This is an alpha feature and may change in the future.", + "description": "volumeDevices is the list of block devices to be used by the container. This is a beta feature.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.api.core.v1.VolumeDevice" @@ -81365,6 +85051,31 @@ } } }, + "io.k8s.api.core.v1.GlusterfsPersistentVolumeSource": { + "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", + "required": [ + "endpoints", + "path" + ], + "properties": { + "endpoints": { + "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "endpointsNamespace": { + "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "path": { + "description": "Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "string" + }, + "readOnly": { + "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + "type": "boolean" + } + } + }, "io.k8s.api.core.v1.GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "required": [ @@ -82510,7 +86221,7 @@ "type": "string" }, "volumeMode": { - "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future.", + "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is a beta feature.", "type": "string" }, "volumeName": { @@ -82664,7 +86375,7 @@ }, "glusterfs": { "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md", - "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsVolumeSource" + "$ref": "#/definitions/io.k8s.api.core.v1.GlusterfsPersistentVolumeSource" }, "hostPath": { "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", @@ -82726,7 +86437,7 @@ "$ref": "#/definitions/io.k8s.api.core.v1.StorageOSPersistentVolumeSource" }, "volumeMode": { - "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is an alpha feature and may change in the future.", + "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is a beta feature.", "type": "string" }, "vsphereVolume": { @@ -83057,6 +86768,10 @@ "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, + "enableServiceLinks": { + "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links.", + "type": "boolean" + }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "type": "array", @@ -85458,7 +89173,7 @@ "format": "int32" }, "revisionHistoryLimit": { - "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.", + "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means \"retaining all old RelicaSets\".", "type": "integer", "format": "int32" }, @@ -86119,6 +89834,10 @@ "type": "string" } }, + "runAsGroup": { + "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.", + "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RunAsGroupStrategyOptions" + }, "runAsUser": { "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.", "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions" @@ -86332,6 +90051,25 @@ } } }, + "io.k8s.api.extensions.v1beta1.RunAsGroupStrategyOptions": { + "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsGroupStrategyOptions from policy API Group instead.", + "required": [ + "rule" + ], + "properties": { + "ranges": { + "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.extensions.v1beta1.IDRange" + } + }, + "rule": { + "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", + "type": "string" + } + } + }, "io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions": { "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsUserStrategyOptions from policy API Group instead.", "required": [ @@ -87027,6 +90765,10 @@ "type": "string" } }, + "runAsGroup": { + "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.", + "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions" + }, "runAsUser": { "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.", "$ref": "#/definitions/io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions" @@ -87048,6 +90790,25 @@ } } }, + "io.k8s.api.policy.v1beta1.RunAsGroupStrategyOptions": { + "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.", + "required": [ + "rule" + ], + "properties": { + "ranges": { + "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.policy.v1beta1.IDRange" + } + }, + "rule": { + "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", + "type": "string" + } + } + }, "io.k8s.api.policy.v1beta1.RunAsUserStrategyOptions": { "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.", "required": [ @@ -88600,6 +92361,146 @@ } ] }, + "io.k8s.api.storage.v1.VolumeAttachment": { + "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", + "required": [ + "spec" + ], + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" + }, + "spec": { + "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSpec" + }, + "status": { + "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentStatus" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttachment", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.VolumeAttachmentList": { + "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", + "required": [ + "items" + ], + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + "type": "string" + }, + "items": { + "description": "Items is the list of VolumeAttachments", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachment" + } + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" + } + }, + "x-kubernetes-group-version-kind": [ + { + "group": "storage.k8s.io", + "kind": "VolumeAttachmentList", + "version": "v1" + } + ] + }, + "io.k8s.api.storage.v1.VolumeAttachmentSource": { + "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", + "properties": { + "persistentVolumeName": { + "description": "Name of the persistent volume to attach.", + "type": "string" + } + } + }, + "io.k8s.api.storage.v1.VolumeAttachmentSpec": { + "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", + "required": [ + "attacher", + "source", + "nodeName" + ], + "properties": { + "attacher": { + "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", + "type": "string" + }, + "nodeName": { + "description": "The node that the volume should be attached to.", + "type": "string" + }, + "source": { + "description": "Source represents the volume that should be attached.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource" + } + } + }, + "io.k8s.api.storage.v1.VolumeAttachmentStatus": { + "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", + "required": [ + "attached" + ], + "properties": { + "attachError": { + "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError" + }, + "attached": { + "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "boolean" + }, + "attachmentMetadata": { + "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "detachError": { + "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.", + "$ref": "#/definitions/io.k8s.api.storage.v1.VolumeError" + } + } + }, + "io.k8s.api.storage.v1.VolumeError": { + "description": "VolumeError captures an error encountered during a volume operation.", + "properties": { + "message": { + "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", + "type": "string" + }, + "time": { + "description": "Time the error was encountered.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + } + } + }, "io.k8s.api.storage.v1alpha1.VolumeAttachment": { "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "required": [ @@ -89013,6 +92914,22 @@ } } }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion": { + "description": "CustomResourceConversion describes how to convert different versions of a CR.", + "required": [ + "strategy" + ], + "properties": { + "strategy": { + "description": "`strategy` specifies the conversion strategy. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the CR. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information is needed for this option.", + "type": "string" + }, + "webhookClientConfig": { + "description": "`webhookClientConfig` is the instructions for how to call the webhook if strategy is `Webhook`. This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig" + } + } + }, "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinition": { "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.", "required": [ @@ -89157,12 +93074,16 @@ ], "properties": { "additionalPrinterColumns": { - "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column.", + "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Optional, the global columns for all versions. Top-level and per-version columns are mutually exclusive.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition" } }, + "conversion": { + "description": "`conversion` defines conversion settings for the CRD.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceConversion" + }, "group": { "description": "Group is the group this resource belongs in", "type": "string" @@ -89176,11 +93097,11 @@ "type": "string" }, "subresources": { - "description": "Subresources describes the subresources for CustomResources", + "description": "Subresources describes the subresources for CustomResource Optional, the global subresources for all versions. Top-level and per-version subresources are mutually exclusive.", "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources" }, "validation": { - "description": "Validation describes the validation methods for CustomResources", + "description": "Validation describes the validation methods for CustomResources Optional, the global validation schema for all versions. Top-level and per-version schemas are mutually exclusive.", "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation" }, "version": { @@ -89225,16 +93146,28 @@ } }, "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceDefinitionVersion": { + "description": "CustomResourceDefinitionVersion describes a version for CRD.", "required": [ "name", "served", "storage" ], "properties": { + "additionalPrinterColumns": { + "description": "AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. NOTE: CRDs created prior to 1.13 populated the top-level additionalPrinterColumns field by default. To apply an update that changes to per-version additionalPrinterColumns, the top-level additionalPrinterColumns field must be explicitly set to null", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceColumnDefinition" + } + }, "name": { "description": "Name is the version name, e.g. \u201cv1\u201d, \u201cv2beta1\u201d, etc.", "type": "string" }, + "schema": { + "description": "Schema describes the schema for CustomResource used in validation, pruning, and defaulting. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceValidation" + }, "served": { "description": "Served is a flag enabling/disabling this version from being served via REST APIs", "type": "boolean" @@ -89242,6 +93175,10 @@ "storage": { "description": "Storage flags the version as storage version. There must be exactly one flagged as storage version.", "type": "boolean" + }, + "subresources": { + "description": "Subresources describes the subresources for CustomResource Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.CustomResourceSubresources" } } }, @@ -89463,6 +93400,45 @@ "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference": { + "description": "ServiceReference holds a reference to Service.legacy.k8s.io", + "required": [ + "namespace", + "name" + ], + "properties": { + "name": { + "description": "`name` is the name of the service. Required", + "type": "string" + }, + "namespace": { + "description": "`namespace` is the namespace of the service. Required", + "type": "string" + }, + "path": { + "description": "`path` is an optional URL path which will be sent in any request to this service.", + "type": "string" + } + } + }, + "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.WebhookClientConfig": { + "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook. It has the same field as admissionregistration.v1beta1.WebhookClientConfig.", + "properties": { + "caBundle": { + "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", + "type": "string", + "format": "byte" + }, + "service": { + "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`.\n\nPort 443 will be used if it is open, otherwise it is an error.", + "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.ServiceReference" + }, + "url": { + "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", + "type": "string" + } + } + }, "io.k8s.apimachinery.pkg.api.resource.Quantity": { "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and Int64() accessors.\n\nThe serialization format is:\n\n ::= \n (Note that may be empty, from the \"\" case in .)\n ::= 0 | 1 | ... | 9 ::= | ::= | . | . | . ::= \"+\" | \"-\" ::= | ::= | | ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n ::= \"e\" | \"E\" \n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n a. No precision is lost\n b. No fractional digits will be emitted\n c. The exponent (or suffix) is as large as possible.\nThe sign will be omitted unless the number is negative.\n\nExamples:\n 1.5 will be serialized as \"1500m\"\n 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", "type": "string" @@ -89760,6 +93736,11 @@ "kind": "DeleteOptions", "version": "v1beta2" }, + { + "group": "auditregistration.k8s.io", + "kind": "DeleteOptions", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", @@ -90096,7 +94077,7 @@ } }, "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": { - "description": "OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.", + "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "required": [ "apiVersion", "kind", @@ -90325,6 +94306,11 @@ "kind": "WatchEvent", "version": "v1beta2" }, + { + "group": "auditregistration.k8s.io", + "kind": "WatchEvent", + "version": "v1alpha1" + }, { "group": "authentication.k8s.io", "kind": "WatchEvent", @@ -90618,7 +94604,7 @@ ], "properties": { "caBundle": { - "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.", + "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string", "format": "byte" }, @@ -90777,7 +94763,7 @@ ], "properties": { "caBundle": { - "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.", + "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string", "format": "byte" }, diff --git a/tests/KubernetesClient.Tests/V1StatusObjectViewTests.cs b/tests/KubernetesClient.Tests/V1StatusObjectViewTests.cs index c721392..cb929b7 100644 --- a/tests/KubernetesClient.Tests/V1StatusObjectViewTests.cs +++ b/tests/KubernetesClient.Tests/V1StatusObjectViewTests.cs @@ -31,7 +31,7 @@ namespace k8s.Tests Host = server.Uri.ToString() }); - var status = client.DeleteNamespace(new V1DeleteOptions(), "test"); + var status = client.DeleteNamespace("test", new V1DeleteOptions()); Assert.False(status.HasObject); Assert.Equal(v1Status.Message, status.Message); @@ -61,7 +61,7 @@ namespace k8s.Tests Host = server.Uri.ToString() }); - var status = client.DeleteNamespace(new V1DeleteOptions(), "test"); + var status = client.DeleteNamespace("test", new V1DeleteOptions()); Assert.True(status.HasObject); diff --git a/tests/KubernetesClient.Tests/WatchTests.cs b/tests/KubernetesClient.Tests/WatchTests.cs index b9c2fd7..fde16a9 100644 --- a/tests/KubernetesClient.Tests/WatchTests.cs +++ b/tests/KubernetesClient.Tests/WatchTests.cs @@ -634,9 +634,9 @@ namespace k8s.Tests Assert.True(connectionClosed.IsSet); await kubernetes.DeleteNamespacedJobAsync( - new V1DeleteOptions(), job.Metadata.Name, - job.Metadata.NamespaceProperty); + job.Metadata.NamespaceProperty, + new V1DeleteOptions()); } [Fact(Skip = "https://github.com/kubernetes-client/csharp/issues/165")] diff --git a/tests/KubernetesClient.Tests/assets/apiserver-pfx-data.txt b/tests/KubernetesClient.Tests/assets/apiserver-pfx-data.txt index 97bc6e1..6b3dc94 100644 --- a/tests/KubernetesClient.Tests/assets/apiserver-pfx-data.txt +++ b/tests/KubernetesClient.Tests/assets/apiserver-pfx-data.txt @@ -1 +1 @@ -MIIJwQIBAzCCCYcGCSqGSIb3DQEHAaCCCXgEggl0MIIJcDCCBCcGCSqGSIb3DQEHBqCCBBgwggQUAgEAMIIEDQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQI4bbBAeH9ZRUCAggAgIID4N1CiG8n9Oc6+68ZYhPdpZCl3Lo2KxQLsuiY9raGi6qiwboWIMwepTGGsO1uLJqSGIvNcPqPfhAotDpwgSNexE2LYeUYvuYLFy2o/NuS6w1DaKUneikT0h/tjaVFBTzFmhJN4QsaZo3JhX+WfVdv8BLCNISsVAFVc3Aisi8+uuYMK++i+gDccAJA1MbVFJsUtl82d3ZIQEQDtOG4qLXn2yDGf/lKP15H3bYAw6H+6CwVyEAahwTDDDX8q6u/DKvsVyHhWf7BPNPm1/v6b1uLX0Zi9zj4QxLTklrIhNp6a/FrcOmejf8eJFIhDLdemTrmAd3b1KaLsmVZZUPLzfoub18TihzKVI0Wqk5N6kvRERFUNCfFcXy2v2Re0U/3haKubG8nHrFErsXTHuycsmj+BjFPY3LlffkeMi1WCU1CpIaAq07/bpUYAKwmgY21v7c1jss2Yob1vH+4LPZLVp/drFCa/INcpYez4CnxIElarkjfdnOtqEfQLEwWJCdCbxw3pCCnLWC9vM89mkoYXYohqYx5xEDDdHphyGNKwSnxlf87l1HulTOJ55GwczFlL+GqEp9GM7P9AbZWcLvIPje7TsyIS+DNPflA0eORzoSC0Vuy1e3PGwZsv6eulAOKfXbqn6OSSMwwyBCSw1meb8+Za3B2pNb7mZ5bnbjNId7mUOwjV1x2gLb2ROKd7YRdAelLdAzMudcbY/wqkREzQ5RsEwiEK9EkMY7Y+VjYZJHSoCECtuylx8yCpnPJ95BIGGsnmUDXioYc1fQP1+z8jsSe2uzo/6SS5DSRsNYG8xivrM0tKHipKPvMD895I3mY+OPps6b8wTtUyYNG4Lz+tq8ZkKnWvn7QWDphAzqvBIlVUHOsym2ft4/xO7fgNUL/AiLg2qcNcrzj6tQEoL4Qq9P/zlajhW24VNfYyFVa/BdTVzKdc/YQ8puaVPzB26gAXJCE6b75ytgH+dq08XjVuFG/G97n4uMxsxxI8DP0ZUWpCgzdF0SvxhFfB+ZYp+ELK1YbVrqcThMZuSH6r/KCU1N3Z6GFqpHMK9ky7aC/7HEJ84Ed1vvBncOMGRyfKbnn3f4aRuxkt6/KJ9+riIyUW0N+fG0kFuV0ADTmIvy3a1tu0is7E8xNiujsuO1/KnbVLyf0OvoSkOM7A7UWGuNnQkPTDmgq+hJEV7Y/Zgz7nbc376slisTMq4kSgElWZT1fzLwvrC5DTsnxw1ypqLeBQWx1TvF7kZaPAPEnaHOu1EcSPdDA6UkIGJpU+XpNextC//u5De53Ro54ViYIF/h3Em4+l7CPkk0KVjf+rWlFkIbrXSVAMIIFQQYJKoZIhvcNAQcBoIIFMgSCBS4wggUqMIIFJgYLKoZIhvcNAQwKAQKgggTuMIIE6jAcBgoqhkiG9w0BDAEDMA4ECCUYjeFdLaumAgIIAASCBMi1GALxlEly1sJJ5JShpXwMc8Xw5lHfBbYvovJ8AVZeVjAtea+oaV17yD8fgCfhoPaD7sG+QC6TS+Qx8Ja4N03fjRGv+FeAlKbT/WtwjXpT1iIXETRtfE6z+uKbNun/XTD90+blYyAETVxKtyvWBxm3RA4e67RiEKYhGHl6n2DKjn023iasnShZ2C1HCI3ewD402syT2r5BI+faTOUe4OitHNYMLg46jPQzKQ29qkl1SmPbS8wMF4/fh1FiuEsF/W/6TYFdZ022dXxOPDM1wmpISo3+De+wqEAlETowPrkouYs3c8j1rWpNBpILXgCrFsZlvUhMpoRDs6gzUgYWnwBSZI3PwfbDfYfZ8hjSUoeiaHxpHp1dQHM4i9l4+r7FsV9fJErkgbe+/6M6YpPAs749yqOUHmMhlvu4mpPKBPbivF6o8rrTdPZahuqHWqe8l5fFxmw/PBiOnUhv1pT3VF8tFR0c9+q3KnzCgz+h47VlC+ZJyAdGMhFORaaijVnoaYvNsvmambpcll9+t/9qHB4r9i7oGLxCpUFEXa2nvxJStZdKt9vXO04+TrEwFWESyuB4zlmzUxWJrKcm/t44sMIOhpmf5lEcVfC8J9zcOzP9YPaH8Uivdg25tAwGkUVjVss3U9WNc+RHhexfWppiRtrzRgx9ZTaJjnOkREHijrIMJ3THi75kvTA4dk5MprdTGq7R8NgXt6ZwuPkeeuDd6c+d9nniMs17L8aX+cKq+ih++d9PzBlp7EB/reSL4IAxYdwwlJKmGHqtIbmoOifaVNDOaz7fduzo4EqQ//dw6vEkORb+FJ9t8p/bXHd+AmcAVbk9xD8U/TB/WQUyAbQQuh1+s7TfYP6D0kR+0FRhQiw2L2zJS29XG7qM37As27O0sCcm7DHMEG08i2SYMgssjsCJqlyvQnnOizuKL6+B5czjgA+oMAuRk4BF3Mjz9KpB3/EhFkvdl2Qzf3V2IghUdguPE2SgKZaZreKFQCzCFkbGYxZjDkyxI4Bgt3eZ605lW89RmW5ievRP2aG+8O5TrDL4fMn5PYDS9Y5uZlMfPI5kSjgg1Skv3ER/KhdrJAvDfH17WlkBa7E7gZGbNwk89VcB6EgqftF6kRjF+VtpmZFBnmcmxXORrzgnQ6mp6M3BXoAxrf7BH5IOxZL6UVslz1MLpjBteHxDfyPs24OgLLQcd82uWj5CkEZ2WKgM0eO5QP3V5nUnjmwehmib/sSB1e7w2kbqQDKiMcWmr0Y+XyHd/xaGqXo2ou8xe1n9atwg4iGeYd1zf8OLQZrOdNfA9mPu/84sMooAOdr632ewUNkpOIOuvn5wkz4BiTo7lMBUveFr7YxPqziGOq1wk0fGUWC5s/ykB/Dcj/dSJJ0ui/l5wuhUMkog+mG4XMgQStVHfLpeNhMm8Sz6xasi0dKto+omA96QHmcylbprSDpFm+iaMRSu0K9h95l2p9FMjqaffDG6ydDnYQNgOo7cLAqHWvEcZyeMEU8k/+BWANjRs+zQaWFTaHqZNObwLVlfVJORQj2NrB/o6rnlqmW/MG9CLFBml679Rsj5Uv8Zb0SgL0A+ui/dsyAYIb8NUiL/WOmsWx999ztdpKA9BkTOijHPAfkAYndSqcIoBBMxJTAjBgkqhkiG9w0BCRUxFgQUleDEgeLMxqDSYaW50lkmHFwjYv8wMTAhMAkGBSsOAwIaBQAEFBtlW3NKzWYbFpQosWzQZqthWnriBAjoLbUohvvqcAICCAA= \ No newline at end of file +MIIJ0QIBAzCCCZcGCSqGSIb3DQEHAaCCCYgEggmEMIIJgDCCBDcGCSqGSIb3DQEHBqCCBCgwggQkAgEAMIIEHQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIDg04E/7JxmoCAggAgIID8PFBaCkboT+QvuNj253i5qcyj5f9lFXB5xJLdvzpWycsz7RFLHco8kwIfmfZsCW3FW0uzp7ScHiW8o2uzhjBreXw63tQ4mzILf9bMFQflJOqwJN4YSbGnFNOHE0hU9M4FWhlA7q9mw36DBq1vIf/UfTeaGzvBPbzdXqKbuenbYzYVcWlTloAI+aXHNdZTtMbKmnNJIBFqYRilE9K44B5eerWaIcq4yaw01K+VUeCogg7LeWUtLUrES32sTQVC+UxHpT00wxfXMqlfN3n+Obk5EPOkWJMBSzTHRunWUkUiJktnabw+KKGU1cox7VJ16K5bL5sF7FgB7m6UWfmagT1bSKXCyEjgJjEmAJEInFVDgKdR9xNp+nsE6YXpgaWBcA6nT7fc+cdDsCz/x/jGV8O/8UKGl2YOtjR1hDwOSl7xJuODvSbYKNHGCByMg++6FS8mD/jcd/EXiP3zqoVZekHnZVzLquhdGHSz7RoYHIdzFCCYiuenUIfuIdBgc6oGbK2JQvBT1PfqyQVlEaZPlrNXCttg5WbT/cA96w/i0YG1MY+XVENw2R+MxIUTEmzOUIYftjUsCbuF9jZ9BTmZE/61/DisZbco3GE0AXa+u5alnhZN9Ne47KttxyZ9JwmfweZdCpigwGWFv7/OOESRlV/0fw5NAsh2zCD5VsVa+GlDdrOAkkMx4u4DZQE6MDu0K5NRQEyACZqijj8rjNtS9D35dsNQE0b8S+M/+mMA8hlXXlrfzjHydd3ClEtwKKKFDOcvJPfjjO43touucwY1JO0+Us8zTSEQus6X9IejoViUyjJwUAp1Me9WMRynbo+GvOJIsDan4aEH4BiWBsSgLk5EYJ2oB+Q7A+REC5qw1GL3ID4fdQv+evcRrHt8hd3H8Ydo6BKrgW78EHY+roDyUBP94X08urrXs2vY87xiPA18KvVke+1dr5vhnQaYFJr5IQJRHthf8VPrtVJ6lVfiOnnKRtrfGyTFrscKU9uIAaC/vB4pvkWx5nq5ziL894P0hpah01oTVnxZP9tcQCOQpn1mOo5X0xXkx3cxouH/GmiCvRdZ/eUljl1WgjcXj/hOiaBr7dWl6HarDEwCXFTL4B111cHvgToYy53xpFHTsMOQKOEZZjL6IBLPnz/93g6mNp3Xq1GsdyKEVvfk6D5TG5lWrdJA1uimUrM793eLMScmLitOS7y8MUlAq4JagaDSgsib/QpbiekubsjZvek44mBcLsZGH8QJduNHm4Erh0oInlZBUQCFREHjDTyo5pMqWIn5HcMT4TnXsrBpYWr29j+v3WRnjHNu2JPcMkFwRLzOXPGJePAjb870DXxv4nicyUIBjCCBUEGCSqGSIb3DQEHAaCCBTIEggUuMIIFKjCCBSYGCyqGSIb3DQEMCgECoIIE7jCCBOowHAYKKoZIhvcNAQwBAzAOBAh5BRg9uwW8AgICCAAEggTIFskQ0+ZLeEy7NwLjVIM1U9k7HpQE3VuN2ujhzukjx0QPvEsiUom67Lx/U2eU8pZGwtd9xCX+bon+lGG8bEKq6xylq48JnnZSN1Z8+Dkue7Yx1oiWB/AdLmf3mZnAK/UPbUv/NTj+OUMyM4QxAWIfxiWaahpCiRSPhFPIeISK0KwiYPp7R6GCKy8XHJ33qej+Gn271WxGVkyW0+YQetqG3ZMzjIm9XEH16p08f6r4a2ZCvwvg6MJs+h7nSZHxRhM/2HiaFi6pN4yQEgrY3AggPpUEAr4eMN/lJBx22f6qym/9lWpxPoWYbt+84zLg5fnldEXW1s1nqYsAveClxSSiivNUAmG2hocXq8fah+4wBUIXvawRZi/iCAD+lSOV5epqA1QbUuqKKSwwG/Dh5upC8kqX72Q2vrqySPeUaWbWFURnxF0f9G09pCbXmgpIuiXfQvq4s4XBpQMoOAZBviIqFHdbO4I7nLlZ1XwREFkVc3sYtMd9efHiXxiaqJqSDYlI0yrGS3JSmyv5+ViA9dwp4EgQC0HeSdk7khaTEY9/xZMyZLFEkLM6DkCX0+cgGvFRUmPx199rbTlqlLv6N83VZ5Kb1cew3goKhYatE7HBM8dlK12ZXI6IdweK0hFpONd/oHVu7x7+WpRdJtPW/dt+ofKz3NsbrWqY2FxNH5Pjvl5lTVa8ZM/QqxVatMbFNSF3p1MmtvVtiO6XYBiaamLa3Xtc7wNjvffMru4zgJxI4Z7lyWo2Lz4C+BtiKdE8wkv/dkMrx/pi7bvcOALJ+Pid3J9pqm324zNH5fSm+ERlrTBxIoaqgrvVrBrikPqcc4R/m+arXVo1dQ91L0hpoLWBASgdVdLumJSqA8yLMXNk5O92UquFmYcvIdw3I3++UYVQTn1GA5cJokWOVx8WZXpL3HNRy8GLgwYrDXhrNiNIkm+jUM9bUdkziupjQNN9/z4LAFD/8dytE3vrB8CMKnCrbGU4qqOjwAlZxMuQUlBYqV9970iOpd8fhvmGKttNe/KcZSczUCInX7aMMZfcNyub2PGBgtKlKQCGb3n4mtwpgvwLpIgIDO2RyU0kCnLe5OeMa0kC9uOu1gqP0w/Jsw8fpuFEHir0e2JWu7uFzWrMbOMDwccI3a8ffubVV1ByqR6Gf4j9u0ddbBdrmzQ/fwkpFCS2oGsXzKj5SmjkTJXgQ0CEHXea7bm6uXi1LkqZ5A81Ut9rNUtJgF16ZTj097DDyGHw1oDm261vwLFMVtFQH1dZufdFbrsfsoR0uVFikTCMp4BluoFNsCtYnWcJH2ILpyop+fqb+1Ge2xuEJVjXrOfvQemOEFy77fK+JPMzi8e34bY1PnztCq89uFvCfFasXDz67fwKTo5DH5gSX3aE2PYO1ae3flEHh9EcvwhVmDnYvnYFtyRXoNivsw4mbKgDpyDvv1GQ6M256fAUh/4ZKmpxXJmauuSEUTExRLkRbBoAFtaY/qB7JPe2iv7SaYao8c/j4AZyJcZeHuFkkZxlG1rAgSp/oMotFJamvnCRqUUjJmeSjf2a/Ap2mVWNw6WMvX1UEidbuBEqRr9VpkXDTxVwA/B8c/irSkC21CCAkphD275bK0N+O+Ct/dYn6jQ31/xaHRGVTo6UMSUwIwYJKoZIhvcNAQkVMRYEFHc/MYQ8A3iMIXp/IMCCNpbOYmzhMDEwITAJBgUrDgMCGgUABBQwyicWfYXqjCwbCHLrpoYFB7BVXgQIwNsSAgUl+jACAggA diff --git a/tests/KubernetesClient.Tests/assets/client-certificate-data.txt b/tests/KubernetesClient.Tests/assets/client-certificate-data.txt index e3df058..4e68fd8 100644 --- a/tests/KubernetesClient.Tests/assets/client-certificate-data.txt +++ b/tests/KubernetesClient.Tests/assets/client-certificate-data.txt @@ -1 +1 @@ -LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlEUkRDQ0FpeWdBd0lCQWdJSUxzVmNxZ0pmOWdZd0RRWUpLb1pJaHZjTkFRRUxCUUF3RXpFUk1BOEdBMVVFQXd3SVlXTnphemh6DQpZMkV3SGhjTk1UY3dPVEl3TURBd01EQXdXaGNOTVRrd09USXdNREF3TURBd1dqQVZNUk13RVFZRFZRUUREQXByZFdKbFkyOXVabWxuDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXJQVjB0Rmp3ZkxVL0p6M3RaUXRRblNSRG5aMGpLTGtjDQpRcnJ2a2pwbEhpVkFVOVNkRG9nT0VneUVWQjJoMU0xSWNYSVZYM2lCTGFHS04rSTl2dGZQSFQ2QmViTzVKNzFaOHRGMytJU1pNRzBLDQpzSWwzQS94VEJWKzlwRHVEU3pXTGNVTVoxbnhWV1Bma0paRkVTQTNCakxFT1NGWWYySUF4V0g2cjJDRHp0SDMySzVLbUNaLzR1NFFsDQpCT204YWoxVkFUbUZvK3BJaTNmUXVKcm1TblBSRGRlSW5HVGYwaEYyQ3oybzYrNU1TSzAxbURuaERyZVF5eTJHNXZXRnlWUjNxZ3pGDQpOMHFyaUEvSFRGcklSazdtbFZtaEpPM3A5cU0wRGdJc29XdHg0Ukdqc1lycTBmOTBnREhna1YvS0E3UEhZQlhheVVnQjhLcTUwS2xHDQpxczRyYVFJREFRQUJvNEdaTUlHV01FSUdBMVVkSXdRN01EbUFGS0FXL3JnbWJ4YUtWcUZoaFl4bEl5TEhQbEkyb1Jla0ZUQVRNUkV3DQpEd1lEVlFRRERBaGhZM05yT0hOallZSUlSbWp6U3h0U2d5TXdIUVlEVlIwT0JCWUVGSk5mZDNaZlJZZnlQdGJZbE1NUDYvKzcrU3dIDQpNQXdHQTFVZEV3RUIvd1FDTUFBd0RnWURWUjBQQVFIL0JBUURBZ1dnTUJNR0ExVWRKUVFNTUFvR0NDc0dBUVVGQndNQ01BMEdDU3FHDQpTSWIzRFFFQkN3VUFBNElCQVFCRVd0U1JMU0lTODhFUWpRdWp4bitQdmQ0OVNxSkdTUmRFNnlraUkwcXZ5RmY1c1lnV2FlYTdaME43DQpuK3k3SmlQQXQ1MEFkdGdvYTF1bWV4bG9VZE02WDJQYTB4RUpDaklGOFArcjhPOU41U0N5NVRXYTd0VTFrWkdoZHJFOERMS2RJbXk4DQpqblhnUlBjUHVlVnRkam50TFdUMGpETDI5YVg3ZUhLcllTMWQ2dkUyWXE3djZVNFNKN2JLU0NGbFNjS1h0VjhxUFVteXFlbXd5WHNBDQpVdEtBelRKS0l0UGw3eG5icXduVm5tY3Q0a0Q1VHZBUEFTdmZGTkR0eEU0WTU1ZHNYTERSVEc3NU5VK044bi94ZnBzcnlBZkQrUGZ6DQpNR05OWVhLb0hwbm93R1Z4V3UxRHZNY2kxQTl4STF6VnFsS2FpVTZSNm9qWmx6Q2xsVU54QUhzZA0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K \ No newline at end of file +LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURrVENDQW5tZ0F3SUJBZ0lVTzlVTkdpbHhmSHpMbVJXcWU2dVMyRVZ1NVhVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1FURUxNQWtHQTFVRUJoTUNWVk14RURBT0JnTlZCQWdUQjFKbFpHMXZibVF4Q3pBSkJnTlZCQWNUQWxkQgpNUk13RVFZRFZRUURFd3ByZFdKbGNtNWxkR1Z6TUNBWERURTRNVEl3T0RBNU5URXdNRm9ZRHpJeE1UZ3hNVEUwCk1EazFNVEF3V2pCQk1Rc3dDUVlEVlFRR0V3SlZVekVRTUE0R0ExVUVDQk1IVW1Wa2JXOXVaREVMTUFrR0ExVUUKQnhNQ1YwRXhFekFSQmdOVkJBTVRDbXQxWW1WeWJtVjBaWE13Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQgpEd0F3Z2dFS0FvSUJBUUM4WkVRS296SE8zOExmRzRpcHFYWnRLTzNxSENjL1Z1WjUxWnZSeWJuTnpCYU5iMk9oClM0cU1nNDF6cFdzL3dMQnk4ZndPclpoOHpHb28wbHllQXVCSlBPWFc5SmswMmhOc1Y3ZHBqYXBZWFMrSXJvN04KcUxhWDB5amQxWWllSWFlb3NtV2xib2ZpcDVzS3dzVUI3bGREeXJpQklBYTEwNlhhTng5ZG82UEh1TDNibStldwpiaWRoRTlNUFRHY2V5WW9rZ3pNbGppanordk0yUnN5Z05ncmR4VDhROC9GRER2ZndTRmZUaEZlYXIzckQvRkJGCmVYb0Y5MHp6cG1aZlphTDlyZ2NjQ0pzQ2JSZlpiellVVERRVHo2dStaUVhUdGlrbVMvQ3d2d0hXa0w3bGhQNXYKQU0yVFpETEJhQXQwOU14dGlORFNWaFFTWVR2QWpKRmU4SzJoQWdNQkFBR2pmekI5TUE0R0ExVWREd0VCL3dRRQpBd0lGb0RBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEQVlEVlIwVEFRSC9CQUl3CkFEQWRCZ05WSFE0RUZnUVVuQmo0T3Y3MnFlWWJ5YjVYSHJma1pkazd6VUF3SHdZRFZSMGpCQmd3Rm9BVUxwemQKRlplYkR6N0RmZUNkZkJqNmNkUWJmNk13RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQU1CL1RDaElEbTNkeDA4SApJeXlFS2dYUHh1d3A1cTB5QkFoT0pUS1JOVXNpayt6ZVUyUGpibnV0M3B1WnBENkZoTGFKQUZPbTdsMHhkNU1ZCkFZOVloSy9wa1U3Rmw1TFg0MitxQzRqK05JdGhBbFM5clNtNkRvNlN1b3JRcjdNajErY0syTjFkZHBtRWZya3kKZXZnMm02aFB5YTFlV0hNanVCd250bkJmV2EzWHBWMWVGZVBvd21zY3R6UmRJYUh3WDM3Yit3c2JmbkppczRvTgo2bHk0THBQb2xtYld3ZTRnaEtPWXNuL3lMT3FrUGJMZVpLeU5yaWJpSGhSQTM0NUVHUGJleXNmSlNIWWFqMnBaCmE0VmRTRFhnT2JlM3Vtdk9keXVEaGl5RFJ3TFozbVJLWlpIR0lzZC9ORzRncWo3a0gzV2N2Wm5mSkVHMXY2cG0KQTZFYTJiRT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= \ No newline at end of file diff --git a/tests/KubernetesClient.Tests/assets/client-key-data.txt b/tests/KubernetesClient.Tests/assets/client-key-data.txt index 1cac101..a03b12d 100644 --- a/tests/KubernetesClient.Tests/assets/client-key-data.txt +++ b/tests/KubernetesClient.Tests/assets/client-key-data.txt @@ -1 +1 @@ -LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQ0KTUlJRW93SUJBQUtDQVFFQXJQVjB0Rmp3ZkxVL0p6M3RaUXRRblNSRG5aMGpLTGtjUXJydmtqcGxIaVZBVTlTZA0KRG9nT0VneUVWQjJoMU0xSWNYSVZYM2lCTGFHS04rSTl2dGZQSFQ2QmViTzVKNzFaOHRGMytJU1pNRzBLc0lsMw0KQS94VEJWKzlwRHVEU3pXTGNVTVoxbnhWV1Bma0paRkVTQTNCakxFT1NGWWYySUF4V0g2cjJDRHp0SDMySzVLbQ0KQ1ovNHU0UWxCT204YWoxVkFUbUZvK3BJaTNmUXVKcm1TblBSRGRlSW5HVGYwaEYyQ3oybzYrNU1TSzAxbURuaA0KRHJlUXl5Mkc1dldGeVZSM3FnekZOMHFyaUEvSFRGcklSazdtbFZtaEpPM3A5cU0wRGdJc29XdHg0Ukdqc1lycQ0KMGY5MGdESGdrVi9LQTdQSFlCWGF5VWdCOEtxNTBLbEdxczRyYVFJREFRQUJBb0lCQUJpaUpPc0N0ODJyS3NGMg0KQ25lWHN2V09rcXJDRkozYUwzSTVtYUZqKzc3ZFkxb05NQWsveTNFNm95WXZ5anE2dWhTZVFQa0YrcS83RCtxQg0KcUhXajJ2VzVUMHQ4RTJUYmpSSU9UMTN2MUxtVzdpelNoMGJrQ3hiNjJkR29RRHpYOVhJK01sSGdCMi9TYm9ZRA0KT0l4aW1TeG1remd1Ty83ajB5TmRkekFqRVZLbFdoYkZ6ajBFV01lazJ4L0VtWXBKSGlYdktZTjA3dXlxcTVMRA0KRlRNSjN1T2dsWis3U1E3eGtQcHl1OW1yMWxVZzVPeXdTV0dRVWR4Mk9IcTZXMlVHNFU4QTNXTFVwSFlLWEhqRQ0KVmg5UVNzdnNvUmptRWNaRllSRlpsRk9raVVCRC9HWm9Ya1doc3BCYU5mODRmUVdJenkzaFpyZ0MwWFc2MmszMQ0KRklVczhMa0NnWUVBMVBTRjR4MitYSnVqU2N1RXBhZWhLS2E3dmt6TXo2SlVlWHFJQlFRbmV1TE5QaVJlUThCWQ0KTVBTajNMV3ZZVzNEenNFQXBQVmMvSDNXZ0Q3V2s1bW1Dbm56elo0eDZ0eE1zaW5vVzZtNk8wWUd4b040YmZ1bg0KblliVFRucFRyRTEvS1VSZUJ6c2JaWmR1SGxwWUtocldMdmJNOW95UEJPbVNvcWk2MEdLQjNhOENnWUVBeit0TQ0KNlhYdVNWbnNUTExLNmx3U1FxWmZTNkVaa1RpOXZ2eEpaN2R1V1BxNm5CVHZtcjhZL2F0Q3l0UlhZY0FjRmF0Yw0KMVNURmdRYjJCUW82K1FGRW12NVhSUThqMmphODBMT2ZET2NCVkpTNmphOC8rK09IWDBWWGFjYUhDMkh6Y01MeA0KMlNyVXNhaEtkL1dUbW5xQmJDQTBUaDY3Q0UvOFIyZVQvdmc2Sm1jQ2dZQXV5YmFzNnJrTFljcWppUXFRMXQ2cQ0KcnM5ckJUYXVtK3pSYitGNHNLdjM3T0xKTjNaYWptVVNCSDRJSFFiMmNnWm1ZN00vaXdVdUdIdkxXNE1MbE9PTg0KUTdRVVJpQ1RpR2wxYjQyMHJmclQwUlBtQTdhdSsyNmRScVVnaGZIaVZuaU0yWStMS1NwZ3pMK04vYTJIT3JRNg0KUjFGTERpRFNKSHRxTDRZMENLQ2Qwd0tCZ0NGRWJ0dno2SnFIN3MwZTFtVEZNbzdEZS8vbjJPVnBoTUtvTHo2UA0KRlBMYnV6djZCWlJtK3lLcllsWjl2elYrdlgraUdZcHBCY2p0U2pQb1BTTldWcG5PRkR5U2ZaUU9xZ3Rpa2hKSQ0KYStnU20vN0xpWnROL256NTVWQ2hXVDR5Ly9hTTJwRjZ6dWxXR2dRem9OaFl2WmlGVnBraFJaL0EzSWE0UmUvSA0KMjlZRkFvR0JBSU81QVV6V3V1SHN5Wi9MeXMyZTg5d0w4OU5hVE1OVFcwQVlEZjhVQndMeWhyNEsrUmVsOHdiNw0KOXZ2L04wVTE0WURNT0c2S0lGQ05nZjRKZWJDOGIyOGp4cXFmTzV4clFRZWRsemU2TFFmMUhzUDJ5WVlOVkRjeg0KUWZ6bG9EOE96bmp5Y3pJY0doMkszU0cvWnJmWWtXWUxlUkVZRGpiU0VUN1cybERBa1FsVA0KLS0tLS1FTkQgUlNBIFBSSVZBVEUgS0VZLS0tLS0NCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= \ No newline at end of file +LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb3dJQkFBS0NBUUVBdkdSRUNxTXh6dC9DM3h1SXFhbDJiU2p0Nmh3blAxYm1lZFdiMGNtNXpjd1dqVzlqCm9VdUtqSU9OYzZWclA4Q3djdkg4RHEyWWZNeHFLTkpjbmdMZ1NUemwxdlNaTk5vVGJGZTNhWTJxV0YwdmlLNk8KemFpMmw5TW8zZFdJbmlHbnFMSmxwVzZINHFlYkNzTEZBZTVYUThxNGdTQUd0ZE9sMmpjZlhhT2p4N2k5MjV2bgpzRzRuWVJQVEQweG5Ic21LSklNekpZNG84L3J6TmtiTW9EWUszY1UvRVBQeFF3NzM4RWhYMDRSWG1xOTZ3L3hRClJYbDZCZmRNODZabVgyV2kvYTRISEFpYkFtMFgyVzgyRkV3MEU4K3J2bVVGMDdZcEprdndzTDhCMXBDKzVZVCsKYndETmsyUXl3V2dMZFBUTWJZalEwbFlVRW1FN3dJeVJYdkN0b1FJREFRQUJBb0lCQUNCYk9EUjdndnA5QkFNOQp2Mk1rYitxZnRQMFlpTVVnTDhXTklvNE5qNVFCRVg2Sk94dGcxaEw4SlRkUG1mUUJMRTBSc3JEeXI5WC9aZHhOCkJRcytnemNROW9qTXllT0I4UVFTckxXOFZ4MkdJN3ZkL3pqaldUa0tVMktHWWtpR2p6MHlKck1iSU11VTdkUVQKVDdMZE5LKzRDYWhqejhNNjdxbGova2NlNitwSlRLdHZKR2tNSDRYUXJyMFRmU3hLMmEwUUNmNkZwSXp2OFFEMApISE9HbFJaWlBYK1dXYVA2UFpFU3JSZG1vbmFKaTJlRG03b1Y1WU1DMExWTHJzMVprZS9FT01CODZYOVlraGJUCmJsRkxRZjlNR1hTdWtGeW1MSnFSd01DUjJxZytKSXpEU1BuYzkzbjNwcHl4Nys3UkhFeXZNMFVNOVhyeHQrNHcKUkd3ZVZlRUNnWUVBeElkaFRCdW4rRk52YkVhSHZUdlpzNkVCa1lJUXUyV0NDR3dWN1lPbTZzc0hzczJBaldrVgprQ0pMajhZMTFpMHd0Y21yOG9DcE1EN0FDRWxMSWFEK3RubW5CTzlkQ2NnTzJoNXFCSkY1UytJeFlGcVZ5ZVBsCnptQkE2VzFvdzB2Y1hsYmkrVUg4SWF3WnNLaFlMaklscmdmQ3YwaU9LNzBYaEF3YzZ6Vlk4TjhDZ1lFQTlXYUUKMklkNjJEaGxLWVRaNW5yY3g1aVN3WU1jaitMTE5FYTFZMlZFNEhZZktvbjFkRnNSa2NKV1YyRVpoRGlqcVIyaQpXZEdEVldiMVVaVEpiM3BZWW1NakJFQXhFbEJXTSt0SzhialRqMWhxbXJPQWhLU0ZYUjg4RkNEanVkcStSbmo4CklyZFlWanNCdDA5RkVkT2RqdVFseGgyRVdQWDNPdVFhRXd5WnNYOENnWUJzekNtZ0VadHVqUG9kTGZxTlZ5blIKR0t3ZW1xdWFvcnBXNFVkT1l0aXdHTS9kTzRrVVAvMlErbnRzVDZXVU9SWkRQUzgwbytlRjd1Y3VieXpwcEEvKwpndUJraWdLdW5KTWtTendUNVZrS0dtR05YdmlYZU5QSzZWeG1IWXltdVVONDhvN2F3SjNOSWxKaWl2K3VLMUxTCndqY2M0QlRjditUWjFEN2FNNEZXYndLQmdHY1MyNE96VEJiYmdTb3lRZS83OVJYazhPZFU4YjlCN0VZVjJRUloKdWRkcDVlZFJNUWJoWlh6S21zZHk0bXZWK25BRElYa0dkbHA5dDFhLzN1ZnpCSUsyenpOdTN1MnBUcnZaL1kyUQpLMVJQTjkrb3U3ZDYvd1ZCSkZQMENKSzgzU1R1bGtEaXI3andhZVViNTQvNFNYcUdPNU4rUEdPOVZFMnBGNGFlCnlVTnpBb0dCQUptMU1vcFQ4N0llelBmQ010ck51cXVqQjFpdStvb1lIYm9IbGJXZUNxS3RSRnNYMWhXOWpTY1UKQ0ZRanhSVCtPcENVWndjbDdkY2xsTUlxQTRWQ1NmUUFRMW9CMU41WENRWE8xVFlXOHU1K1BRTUdUcFEvQlVEawp6WmRJZzZqQkFXd3R6YkNzKzRjVkFoclN3cDRBSXFvcndTZU1qRmdsTmNoNzgxMEF6emNJCi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg== \ No newline at end of file diff --git a/tests/KubernetesClient.Tests/assets/kubeconfig.relative.yml b/tests/KubernetesClient.Tests/assets/kubeconfig.relative.yml index a8a9bed..0566052 100644 --- a/tests/KubernetesClient.Tests/assets/kubeconfig.relative.yml +++ b/tests/KubernetesClient.Tests/assets/kubeconfig.relative.yml @@ -49,5 +49,5 @@ users: token: black-token - name: red-user user: - client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlEUkRDQ0FpeWdBd0lCQWdJSUxzVmNxZ0pmOWdZd0RRWUpLb1pJaHZjTkFRRUxCUUF3RXpFUk1BOEdBMVVFQXd3SVlXTnphemh6DQpZMkV3SGhjTk1UY3dPVEl3TURBd01EQXdXaGNOTVRrd09USXdNREF3TURBd1dqQVZNUk13RVFZRFZRUUREQXByZFdKbFkyOXVabWxuDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXJQVjB0Rmp3ZkxVL0p6M3RaUXRRblNSRG5aMGpLTGtjDQpRcnJ2a2pwbEhpVkFVOVNkRG9nT0VneUVWQjJoMU0xSWNYSVZYM2lCTGFHS04rSTl2dGZQSFQ2QmViTzVKNzFaOHRGMytJU1pNRzBLDQpzSWwzQS94VEJWKzlwRHVEU3pXTGNVTVoxbnhWV1Bma0paRkVTQTNCakxFT1NGWWYySUF4V0g2cjJDRHp0SDMySzVLbUNaLzR1NFFsDQpCT204YWoxVkFUbUZvK3BJaTNmUXVKcm1TblBSRGRlSW5HVGYwaEYyQ3oybzYrNU1TSzAxbURuaERyZVF5eTJHNXZXRnlWUjNxZ3pGDQpOMHFyaUEvSFRGcklSazdtbFZtaEpPM3A5cU0wRGdJc29XdHg0Ukdqc1lycTBmOTBnREhna1YvS0E3UEhZQlhheVVnQjhLcTUwS2xHDQpxczRyYVFJREFRQUJvNEdaTUlHV01FSUdBMVVkSXdRN01EbUFGS0FXL3JnbWJ4YUtWcUZoaFl4bEl5TEhQbEkyb1Jla0ZUQVRNUkV3DQpEd1lEVlFRRERBaGhZM05yT0hOallZSUlSbWp6U3h0U2d5TXdIUVlEVlIwT0JCWUVGSk5mZDNaZlJZZnlQdGJZbE1NUDYvKzcrU3dIDQpNQXdHQTFVZEV3RUIvd1FDTUFBd0RnWURWUjBQQVFIL0JBUURBZ1dnTUJNR0ExVWRKUVFNTUFvR0NDc0dBUVVGQndNQ01BMEdDU3FHDQpTSWIzRFFFQkN3VUFBNElCQVFCRVd0U1JMU0lTODhFUWpRdWp4bitQdmQ0OVNxSkdTUmRFNnlraUkwcXZ5RmY1c1lnV2FlYTdaME43DQpuK3k3SmlQQXQ1MEFkdGdvYTF1bWV4bG9VZE02WDJQYTB4RUpDaklGOFArcjhPOU41U0N5NVRXYTd0VTFrWkdoZHJFOERMS2RJbXk4DQpqblhnUlBjUHVlVnRkam50TFdUMGpETDI5YVg3ZUhLcllTMWQ2dkUyWXE3djZVNFNKN2JLU0NGbFNjS1h0VjhxUFVteXFlbXd5WHNBDQpVdEtBelRKS0l0UGw3eG5icXduVm5tY3Q0a0Q1VHZBUEFTdmZGTkR0eEU0WTU1ZHNYTERSVEc3NU5VK044bi94ZnBzcnlBZkQrUGZ6DQpNR05OWVhLb0hwbm93R1Z4V3UxRHZNY2kxQTl4STF6VnFsS2FpVTZSNm9qWmx6Q2xsVU54QUhzZA0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K - client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQ0KTUlJRW93SUJBQUtDQVFFQXJQVjB0Rmp3ZkxVL0p6M3RaUXRRblNSRG5aMGpLTGtjUXJydmtqcGxIaVZBVTlTZA0KRG9nT0VneUVWQjJoMU0xSWNYSVZYM2lCTGFHS04rSTl2dGZQSFQ2QmViTzVKNzFaOHRGMytJU1pNRzBLc0lsMw0KQS94VEJWKzlwRHVEU3pXTGNVTVoxbnhWV1Bma0paRkVTQTNCakxFT1NGWWYySUF4V0g2cjJDRHp0SDMySzVLbQ0KQ1ovNHU0UWxCT204YWoxVkFUbUZvK3BJaTNmUXVKcm1TblBSRGRlSW5HVGYwaEYyQ3oybzYrNU1TSzAxbURuaA0KRHJlUXl5Mkc1dldGeVZSM3FnekZOMHFyaUEvSFRGcklSazdtbFZtaEpPM3A5cU0wRGdJc29XdHg0Ukdqc1lycQ0KMGY5MGdESGdrVi9LQTdQSFlCWGF5VWdCOEtxNTBLbEdxczRyYVFJREFRQUJBb0lCQUJpaUpPc0N0ODJyS3NGMg0KQ25lWHN2V09rcXJDRkozYUwzSTVtYUZqKzc3ZFkxb05NQWsveTNFNm95WXZ5anE2dWhTZVFQa0YrcS83RCtxQg0KcUhXajJ2VzVUMHQ4RTJUYmpSSU9UMTN2MUxtVzdpelNoMGJrQ3hiNjJkR29RRHpYOVhJK01sSGdCMi9TYm9ZRA0KT0l4aW1TeG1remd1Ty83ajB5TmRkekFqRVZLbFdoYkZ6ajBFV01lazJ4L0VtWXBKSGlYdktZTjA3dXlxcTVMRA0KRlRNSjN1T2dsWis3U1E3eGtQcHl1OW1yMWxVZzVPeXdTV0dRVWR4Mk9IcTZXMlVHNFU4QTNXTFVwSFlLWEhqRQ0KVmg5UVNzdnNvUmptRWNaRllSRlpsRk9raVVCRC9HWm9Ya1doc3BCYU5mODRmUVdJenkzaFpyZ0MwWFc2MmszMQ0KRklVczhMa0NnWUVBMVBTRjR4MitYSnVqU2N1RXBhZWhLS2E3dmt6TXo2SlVlWHFJQlFRbmV1TE5QaVJlUThCWQ0KTVBTajNMV3ZZVzNEenNFQXBQVmMvSDNXZ0Q3V2s1bW1Dbm56elo0eDZ0eE1zaW5vVzZtNk8wWUd4b040YmZ1bg0KblliVFRucFRyRTEvS1VSZUJ6c2JaWmR1SGxwWUtocldMdmJNOW95UEJPbVNvcWk2MEdLQjNhOENnWUVBeit0TQ0KNlhYdVNWbnNUTExLNmx3U1FxWmZTNkVaa1RpOXZ2eEpaN2R1V1BxNm5CVHZtcjhZL2F0Q3l0UlhZY0FjRmF0Yw0KMVNURmdRYjJCUW82K1FGRW12NVhSUThqMmphODBMT2ZET2NCVkpTNmphOC8rK09IWDBWWGFjYUhDMkh6Y01MeA0KMlNyVXNhaEtkL1dUbW5xQmJDQTBUaDY3Q0UvOFIyZVQvdmc2Sm1jQ2dZQXV5YmFzNnJrTFljcWppUXFRMXQ2cQ0KcnM5ckJUYXVtK3pSYitGNHNLdjM3T0xKTjNaYWptVVNCSDRJSFFiMmNnWm1ZN00vaXdVdUdIdkxXNE1MbE9PTg0KUTdRVVJpQ1RpR2wxYjQyMHJmclQwUlBtQTdhdSsyNmRScVVnaGZIaVZuaU0yWStMS1NwZ3pMK04vYTJIT3JRNg0KUjFGTERpRFNKSHRxTDRZMENLQ2Qwd0tCZ0NGRWJ0dno2SnFIN3MwZTFtVEZNbzdEZS8vbjJPVnBoTUtvTHo2UA0KRlBMYnV6djZCWlJtK3lLcllsWjl2elYrdlgraUdZcHBCY2p0U2pQb1BTTldWcG5PRkR5U2ZaUU9xZ3Rpa2hKSQ0KYStnU20vN0xpWnROL256NTVWQ2hXVDR5Ly9hTTJwRjZ6dWxXR2dRem9OaFl2WmlGVnBraFJaL0EzSWE0UmUvSA0KMjlZRkFvR0JBSU81QVV6V3V1SHN5Wi9MeXMyZTg5d0w4OU5hVE1OVFcwQVlEZjhVQndMeWhyNEsrUmVsOHdiNw0KOXZ2L04wVTE0WURNT0c2S0lGQ05nZjRKZWJDOGIyOGp4cXFmTzV4clFRZWRsemU2TFFmMUhzUDJ5WVlOVkRjeg0KUWZ6bG9EOE96bmp5Y3pJY0doMkszU0cvWnJmWWtXWUxlUkVZRGpiU0VUN1cybERBa1FsVA0KLS0tLS1FTkQgUlNBIFBSSVZBVEUgS0VZLS0tLS0NCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= + client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURrVENDQW5tZ0F3SUJBZ0lVTzlVTkdpbHhmSHpMbVJXcWU2dVMyRVZ1NVhVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1FURUxNQWtHQTFVRUJoTUNWVk14RURBT0JnTlZCQWdUQjFKbFpHMXZibVF4Q3pBSkJnTlZCQWNUQWxkQgpNUk13RVFZRFZRUURFd3ByZFdKbGNtNWxkR1Z6TUNBWERURTRNVEl3T0RBNU5URXdNRm9ZRHpJeE1UZ3hNVEUwCk1EazFNVEF3V2pCQk1Rc3dDUVlEVlFRR0V3SlZVekVRTUE0R0ExVUVDQk1IVW1Wa2JXOXVaREVMTUFrR0ExVUUKQnhNQ1YwRXhFekFSQmdOVkJBTVRDbXQxWW1WeWJtVjBaWE13Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQgpEd0F3Z2dFS0FvSUJBUUM4WkVRS296SE8zOExmRzRpcHFYWnRLTzNxSENjL1Z1WjUxWnZSeWJuTnpCYU5iMk9oClM0cU1nNDF6cFdzL3dMQnk4ZndPclpoOHpHb28wbHllQXVCSlBPWFc5SmswMmhOc1Y3ZHBqYXBZWFMrSXJvN04KcUxhWDB5amQxWWllSWFlb3NtV2xib2ZpcDVzS3dzVUI3bGREeXJpQklBYTEwNlhhTng5ZG82UEh1TDNibStldwpiaWRoRTlNUFRHY2V5WW9rZ3pNbGppanordk0yUnN5Z05ncmR4VDhROC9GRER2ZndTRmZUaEZlYXIzckQvRkJGCmVYb0Y5MHp6cG1aZlphTDlyZ2NjQ0pzQ2JSZlpiellVVERRVHo2dStaUVhUdGlrbVMvQ3d2d0hXa0w3bGhQNXYKQU0yVFpETEJhQXQwOU14dGlORFNWaFFTWVR2QWpKRmU4SzJoQWdNQkFBR2pmekI5TUE0R0ExVWREd0VCL3dRRQpBd0lGb0RBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEQVlEVlIwVEFRSC9CQUl3CkFEQWRCZ05WSFE0RUZnUVVuQmo0T3Y3MnFlWWJ5YjVYSHJma1pkazd6VUF3SHdZRFZSMGpCQmd3Rm9BVUxwemQKRlplYkR6N0RmZUNkZkJqNmNkUWJmNk13RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQU1CL1RDaElEbTNkeDA4SApJeXlFS2dYUHh1d3A1cTB5QkFoT0pUS1JOVXNpayt6ZVUyUGpibnV0M3B1WnBENkZoTGFKQUZPbTdsMHhkNU1ZCkFZOVloSy9wa1U3Rmw1TFg0MitxQzRqK05JdGhBbFM5clNtNkRvNlN1b3JRcjdNajErY0syTjFkZHBtRWZya3kKZXZnMm02aFB5YTFlV0hNanVCd250bkJmV2EzWHBWMWVGZVBvd21zY3R6UmRJYUh3WDM3Yit3c2JmbkppczRvTgo2bHk0THBQb2xtYld3ZTRnaEtPWXNuL3lMT3FrUGJMZVpLeU5yaWJpSGhSQTM0NUVHUGJleXNmSlNIWWFqMnBaCmE0VmRTRFhnT2JlM3Vtdk9keXVEaGl5RFJ3TFozbVJLWlpIR0lzZC9ORzRncWo3a0gzV2N2Wm5mSkVHMXY2cG0KQTZFYTJiRT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb3dJQkFBS0NBUUVBdkdSRUNxTXh6dC9DM3h1SXFhbDJiU2p0Nmh3blAxYm1lZFdiMGNtNXpjd1dqVzlqCm9VdUtqSU9OYzZWclA4Q3djdkg4RHEyWWZNeHFLTkpjbmdMZ1NUemwxdlNaTk5vVGJGZTNhWTJxV0YwdmlLNk8KemFpMmw5TW8zZFdJbmlHbnFMSmxwVzZINHFlYkNzTEZBZTVYUThxNGdTQUd0ZE9sMmpjZlhhT2p4N2k5MjV2bgpzRzRuWVJQVEQweG5Ic21LSklNekpZNG84L3J6TmtiTW9EWUszY1UvRVBQeFF3NzM4RWhYMDRSWG1xOTZ3L3hRClJYbDZCZmRNODZabVgyV2kvYTRISEFpYkFtMFgyVzgyRkV3MEU4K3J2bVVGMDdZcEprdndzTDhCMXBDKzVZVCsKYndETmsyUXl3V2dMZFBUTWJZalEwbFlVRW1FN3dJeVJYdkN0b1FJREFRQUJBb0lCQUNCYk9EUjdndnA5QkFNOQp2Mk1rYitxZnRQMFlpTVVnTDhXTklvNE5qNVFCRVg2Sk94dGcxaEw4SlRkUG1mUUJMRTBSc3JEeXI5WC9aZHhOCkJRcytnemNROW9qTXllT0I4UVFTckxXOFZ4MkdJN3ZkL3pqaldUa0tVMktHWWtpR2p6MHlKck1iSU11VTdkUVQKVDdMZE5LKzRDYWhqejhNNjdxbGova2NlNitwSlRLdHZKR2tNSDRYUXJyMFRmU3hLMmEwUUNmNkZwSXp2OFFEMApISE9HbFJaWlBYK1dXYVA2UFpFU3JSZG1vbmFKaTJlRG03b1Y1WU1DMExWTHJzMVprZS9FT01CODZYOVlraGJUCmJsRkxRZjlNR1hTdWtGeW1MSnFSd01DUjJxZytKSXpEU1BuYzkzbjNwcHl4Nys3UkhFeXZNMFVNOVhyeHQrNHcKUkd3ZVZlRUNnWUVBeElkaFRCdW4rRk52YkVhSHZUdlpzNkVCa1lJUXUyV0NDR3dWN1lPbTZzc0hzczJBaldrVgprQ0pMajhZMTFpMHd0Y21yOG9DcE1EN0FDRWxMSWFEK3RubW5CTzlkQ2NnTzJoNXFCSkY1UytJeFlGcVZ5ZVBsCnptQkE2VzFvdzB2Y1hsYmkrVUg4SWF3WnNLaFlMaklscmdmQ3YwaU9LNzBYaEF3YzZ6Vlk4TjhDZ1lFQTlXYUUKMklkNjJEaGxLWVRaNW5yY3g1aVN3WU1jaitMTE5FYTFZMlZFNEhZZktvbjFkRnNSa2NKV1YyRVpoRGlqcVIyaQpXZEdEVldiMVVaVEpiM3BZWW1NakJFQXhFbEJXTSt0SzhialRqMWhxbXJPQWhLU0ZYUjg4RkNEanVkcStSbmo4CklyZFlWanNCdDA5RkVkT2RqdVFseGgyRVdQWDNPdVFhRXd5WnNYOENnWUJzekNtZ0VadHVqUG9kTGZxTlZ5blIKR0t3ZW1xdWFvcnBXNFVkT1l0aXdHTS9kTzRrVVAvMlErbnRzVDZXVU9SWkRQUzgwbytlRjd1Y3VieXpwcEEvKwpndUJraWdLdW5KTWtTendUNVZrS0dtR05YdmlYZU5QSzZWeG1IWXltdVVONDhvN2F3SjNOSWxKaWl2K3VLMUxTCndqY2M0QlRjditUWjFEN2FNNEZXYndLQmdHY1MyNE96VEJiYmdTb3lRZS83OVJYazhPZFU4YjlCN0VZVjJRUloKdWRkcDVlZFJNUWJoWlh6S21zZHk0bXZWK25BRElYa0dkbHA5dDFhLzN1ZnpCSUsyenpOdTN1MnBUcnZaL1kyUQpLMVJQTjkrb3U3ZDYvd1ZCSkZQMENKSzgzU1R1bGtEaXI3andhZVViNTQvNFNYcUdPNU4rUEdPOVZFMnBGNGFlCnlVTnpBb0dCQUptMU1vcFQ4N0llelBmQ010ck51cXVqQjFpdStvb1lIYm9IbGJXZUNxS3RSRnNYMWhXOWpTY1UKQ0ZRanhSVCtPcENVWndjbDdkY2xsTUlxQTRWQ1NmUUFRMW9CMU41WENRWE8xVFlXOHU1K1BRTUdUcFEvQlVEawp6WmRJZzZqQkFXd3R6YkNzKzRjVkFoclN3cDRBSXFvcndTZU1qRmdsTmNoNzgxMEF6emNJCi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg== diff --git a/tests/KubernetesClient.Tests/assets/kubeconfig.yml b/tests/KubernetesClient.Tests/assets/kubeconfig.yml index 92b07c9..649606c 100644 --- a/tests/KubernetesClient.Tests/assets/kubeconfig.yml +++ b/tests/KubernetesClient.Tests/assets/kubeconfig.yml @@ -49,5 +49,5 @@ users: token: black-token - name: red-user user: - client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlEUkRDQ0FpeWdBd0lCQWdJSUxzVmNxZ0pmOWdZd0RRWUpLb1pJaHZjTkFRRUxCUUF3RXpFUk1BOEdBMVVFQXd3SVlXTnphemh6DQpZMkV3SGhjTk1UY3dPVEl3TURBd01EQXdXaGNOTVRrd09USXdNREF3TURBd1dqQVZNUk13RVFZRFZRUUREQXByZFdKbFkyOXVabWxuDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXJQVjB0Rmp3ZkxVL0p6M3RaUXRRblNSRG5aMGpLTGtjDQpRcnJ2a2pwbEhpVkFVOVNkRG9nT0VneUVWQjJoMU0xSWNYSVZYM2lCTGFHS04rSTl2dGZQSFQ2QmViTzVKNzFaOHRGMytJU1pNRzBLDQpzSWwzQS94VEJWKzlwRHVEU3pXTGNVTVoxbnhWV1Bma0paRkVTQTNCakxFT1NGWWYySUF4V0g2cjJDRHp0SDMySzVLbUNaLzR1NFFsDQpCT204YWoxVkFUbUZvK3BJaTNmUXVKcm1TblBSRGRlSW5HVGYwaEYyQ3oybzYrNU1TSzAxbURuaERyZVF5eTJHNXZXRnlWUjNxZ3pGDQpOMHFyaUEvSFRGcklSazdtbFZtaEpPM3A5cU0wRGdJc29XdHg0Ukdqc1lycTBmOTBnREhna1YvS0E3UEhZQlhheVVnQjhLcTUwS2xHDQpxczRyYVFJREFRQUJvNEdaTUlHV01FSUdBMVVkSXdRN01EbUFGS0FXL3JnbWJ4YUtWcUZoaFl4bEl5TEhQbEkyb1Jla0ZUQVRNUkV3DQpEd1lEVlFRRERBaGhZM05yT0hOallZSUlSbWp6U3h0U2d5TXdIUVlEVlIwT0JCWUVGSk5mZDNaZlJZZnlQdGJZbE1NUDYvKzcrU3dIDQpNQXdHQTFVZEV3RUIvd1FDTUFBd0RnWURWUjBQQVFIL0JBUURBZ1dnTUJNR0ExVWRKUVFNTUFvR0NDc0dBUVVGQndNQ01BMEdDU3FHDQpTSWIzRFFFQkN3VUFBNElCQVFCRVd0U1JMU0lTODhFUWpRdWp4bitQdmQ0OVNxSkdTUmRFNnlraUkwcXZ5RmY1c1lnV2FlYTdaME43DQpuK3k3SmlQQXQ1MEFkdGdvYTF1bWV4bG9VZE02WDJQYTB4RUpDaklGOFArcjhPOU41U0N5NVRXYTd0VTFrWkdoZHJFOERMS2RJbXk4DQpqblhnUlBjUHVlVnRkam50TFdUMGpETDI5YVg3ZUhLcllTMWQ2dkUyWXE3djZVNFNKN2JLU0NGbFNjS1h0VjhxUFVteXFlbXd5WHNBDQpVdEtBelRKS0l0UGw3eG5icXduVm5tY3Q0a0Q1VHZBUEFTdmZGTkR0eEU0WTU1ZHNYTERSVEc3NU5VK044bi94ZnBzcnlBZkQrUGZ6DQpNR05OWVhLb0hwbm93R1Z4V3UxRHZNY2kxQTl4STF6VnFsS2FpVTZSNm9qWmx6Q2xsVU54QUhzZA0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K - client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQ0KTUlJRW93SUJBQUtDQVFFQXJQVjB0Rmp3ZkxVL0p6M3RaUXRRblNSRG5aMGpLTGtjUXJydmtqcGxIaVZBVTlTZA0KRG9nT0VneUVWQjJoMU0xSWNYSVZYM2lCTGFHS04rSTl2dGZQSFQ2QmViTzVKNzFaOHRGMytJU1pNRzBLc0lsMw0KQS94VEJWKzlwRHVEU3pXTGNVTVoxbnhWV1Bma0paRkVTQTNCakxFT1NGWWYySUF4V0g2cjJDRHp0SDMySzVLbQ0KQ1ovNHU0UWxCT204YWoxVkFUbUZvK3BJaTNmUXVKcm1TblBSRGRlSW5HVGYwaEYyQ3oybzYrNU1TSzAxbURuaA0KRHJlUXl5Mkc1dldGeVZSM3FnekZOMHFyaUEvSFRGcklSazdtbFZtaEpPM3A5cU0wRGdJc29XdHg0Ukdqc1lycQ0KMGY5MGdESGdrVi9LQTdQSFlCWGF5VWdCOEtxNTBLbEdxczRyYVFJREFRQUJBb0lCQUJpaUpPc0N0ODJyS3NGMg0KQ25lWHN2V09rcXJDRkozYUwzSTVtYUZqKzc3ZFkxb05NQWsveTNFNm95WXZ5anE2dWhTZVFQa0YrcS83RCtxQg0KcUhXajJ2VzVUMHQ4RTJUYmpSSU9UMTN2MUxtVzdpelNoMGJrQ3hiNjJkR29RRHpYOVhJK01sSGdCMi9TYm9ZRA0KT0l4aW1TeG1remd1Ty83ajB5TmRkekFqRVZLbFdoYkZ6ajBFV01lazJ4L0VtWXBKSGlYdktZTjA3dXlxcTVMRA0KRlRNSjN1T2dsWis3U1E3eGtQcHl1OW1yMWxVZzVPeXdTV0dRVWR4Mk9IcTZXMlVHNFU4QTNXTFVwSFlLWEhqRQ0KVmg5UVNzdnNvUmptRWNaRllSRlpsRk9raVVCRC9HWm9Ya1doc3BCYU5mODRmUVdJenkzaFpyZ0MwWFc2MmszMQ0KRklVczhMa0NnWUVBMVBTRjR4MitYSnVqU2N1RXBhZWhLS2E3dmt6TXo2SlVlWHFJQlFRbmV1TE5QaVJlUThCWQ0KTVBTajNMV3ZZVzNEenNFQXBQVmMvSDNXZ0Q3V2s1bW1Dbm56elo0eDZ0eE1zaW5vVzZtNk8wWUd4b040YmZ1bg0KblliVFRucFRyRTEvS1VSZUJ6c2JaWmR1SGxwWUtocldMdmJNOW95UEJPbVNvcWk2MEdLQjNhOENnWUVBeit0TQ0KNlhYdVNWbnNUTExLNmx3U1FxWmZTNkVaa1RpOXZ2eEpaN2R1V1BxNm5CVHZtcjhZL2F0Q3l0UlhZY0FjRmF0Yw0KMVNURmdRYjJCUW82K1FGRW12NVhSUThqMmphODBMT2ZET2NCVkpTNmphOC8rK09IWDBWWGFjYUhDMkh6Y01MeA0KMlNyVXNhaEtkL1dUbW5xQmJDQTBUaDY3Q0UvOFIyZVQvdmc2Sm1jQ2dZQXV5YmFzNnJrTFljcWppUXFRMXQ2cQ0KcnM5ckJUYXVtK3pSYitGNHNLdjM3T0xKTjNaYWptVVNCSDRJSFFiMmNnWm1ZN00vaXdVdUdIdkxXNE1MbE9PTg0KUTdRVVJpQ1RpR2wxYjQyMHJmclQwUlBtQTdhdSsyNmRScVVnaGZIaVZuaU0yWStMS1NwZ3pMK04vYTJIT3JRNg0KUjFGTERpRFNKSHRxTDRZMENLQ2Qwd0tCZ0NGRWJ0dno2SnFIN3MwZTFtVEZNbzdEZS8vbjJPVnBoTUtvTHo2UA0KRlBMYnV6djZCWlJtK3lLcllsWjl2elYrdlgraUdZcHBCY2p0U2pQb1BTTldWcG5PRkR5U2ZaUU9xZ3Rpa2hKSQ0KYStnU20vN0xpWnROL256NTVWQ2hXVDR5Ly9hTTJwRjZ6dWxXR2dRem9OaFl2WmlGVnBraFJaL0EzSWE0UmUvSA0KMjlZRkFvR0JBSU81QVV6V3V1SHN5Wi9MeXMyZTg5d0w4OU5hVE1OVFcwQVlEZjhVQndMeWhyNEsrUmVsOHdiNw0KOXZ2L04wVTE0WURNT0c2S0lGQ05nZjRKZWJDOGIyOGp4cXFmTzV4clFRZWRsemU2TFFmMUhzUDJ5WVlOVkRjeg0KUWZ6bG9EOE96bmp5Y3pJY0doMkszU0cvWnJmWWtXWUxlUkVZRGpiU0VUN1cybERBa1FsVA0KLS0tLS1FTkQgUlNBIFBSSVZBVEUgS0VZLS0tLS0NCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= \ No newline at end of file + client-certificate-data: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURrVENDQW5tZ0F3SUJBZ0lVTzlVTkdpbHhmSHpMbVJXcWU2dVMyRVZ1NVhVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1FURUxNQWtHQTFVRUJoTUNWVk14RURBT0JnTlZCQWdUQjFKbFpHMXZibVF4Q3pBSkJnTlZCQWNUQWxkQgpNUk13RVFZRFZRUURFd3ByZFdKbGNtNWxkR1Z6TUNBWERURTRNVEl3T0RBNU5URXdNRm9ZRHpJeE1UZ3hNVEUwCk1EazFNVEF3V2pCQk1Rc3dDUVlEVlFRR0V3SlZVekVRTUE0R0ExVUVDQk1IVW1Wa2JXOXVaREVMTUFrR0ExVUUKQnhNQ1YwRXhFekFSQmdOVkJBTVRDbXQxWW1WeWJtVjBaWE13Z2dFaU1BMEdDU3FHU0liM0RRRUJBUVVBQTRJQgpEd0F3Z2dFS0FvSUJBUUM4WkVRS296SE8zOExmRzRpcHFYWnRLTzNxSENjL1Z1WjUxWnZSeWJuTnpCYU5iMk9oClM0cU1nNDF6cFdzL3dMQnk4ZndPclpoOHpHb28wbHllQXVCSlBPWFc5SmswMmhOc1Y3ZHBqYXBZWFMrSXJvN04KcUxhWDB5amQxWWllSWFlb3NtV2xib2ZpcDVzS3dzVUI3bGREeXJpQklBYTEwNlhhTng5ZG82UEh1TDNibStldwpiaWRoRTlNUFRHY2V5WW9rZ3pNbGppanordk0yUnN5Z05ncmR4VDhROC9GRER2ZndTRmZUaEZlYXIzckQvRkJGCmVYb0Y5MHp6cG1aZlphTDlyZ2NjQ0pzQ2JSZlpiellVVERRVHo2dStaUVhUdGlrbVMvQ3d2d0hXa0w3bGhQNXYKQU0yVFpETEJhQXQwOU14dGlORFNWaFFTWVR2QWpKRmU4SzJoQWdNQkFBR2pmekI5TUE0R0ExVWREd0VCL3dRRQpBd0lGb0RBZEJnTlZIU1VFRmpBVUJnZ3JCZ0VGQlFjREFRWUlLd1lCQlFVSEF3SXdEQVlEVlIwVEFRSC9CQUl3CkFEQWRCZ05WSFE0RUZnUVVuQmo0T3Y3MnFlWWJ5YjVYSHJma1pkazd6VUF3SHdZRFZSMGpCQmd3Rm9BVUxwemQKRlplYkR6N0RmZUNkZkJqNmNkUWJmNk13RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQU1CL1RDaElEbTNkeDA4SApJeXlFS2dYUHh1d3A1cTB5QkFoT0pUS1JOVXNpayt6ZVUyUGpibnV0M3B1WnBENkZoTGFKQUZPbTdsMHhkNU1ZCkFZOVloSy9wa1U3Rmw1TFg0MitxQzRqK05JdGhBbFM5clNtNkRvNlN1b3JRcjdNajErY0syTjFkZHBtRWZya3kKZXZnMm02aFB5YTFlV0hNanVCd250bkJmV2EzWHBWMWVGZVBvd21zY3R6UmRJYUh3WDM3Yit3c2JmbkppczRvTgo2bHk0THBQb2xtYld3ZTRnaEtPWXNuL3lMT3FrUGJMZVpLeU5yaWJpSGhSQTM0NUVHUGJleXNmSlNIWWFqMnBaCmE0VmRTRFhnT2JlM3Vtdk9keXVEaGl5RFJ3TFozbVJLWlpIR0lzZC9ORzRncWo3a0gzV2N2Wm5mSkVHMXY2cG0KQTZFYTJiRT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= + client-key-data: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlFb3dJQkFBS0NBUUVBdkdSRUNxTXh6dC9DM3h1SXFhbDJiU2p0Nmh3blAxYm1lZFdiMGNtNXpjd1dqVzlqCm9VdUtqSU9OYzZWclA4Q3djdkg4RHEyWWZNeHFLTkpjbmdMZ1NUemwxdlNaTk5vVGJGZTNhWTJxV0YwdmlLNk8KemFpMmw5TW8zZFdJbmlHbnFMSmxwVzZINHFlYkNzTEZBZTVYUThxNGdTQUd0ZE9sMmpjZlhhT2p4N2k5MjV2bgpzRzRuWVJQVEQweG5Ic21LSklNekpZNG84L3J6TmtiTW9EWUszY1UvRVBQeFF3NzM4RWhYMDRSWG1xOTZ3L3hRClJYbDZCZmRNODZabVgyV2kvYTRISEFpYkFtMFgyVzgyRkV3MEU4K3J2bVVGMDdZcEprdndzTDhCMXBDKzVZVCsKYndETmsyUXl3V2dMZFBUTWJZalEwbFlVRW1FN3dJeVJYdkN0b1FJREFRQUJBb0lCQUNCYk9EUjdndnA5QkFNOQp2Mk1rYitxZnRQMFlpTVVnTDhXTklvNE5qNVFCRVg2Sk94dGcxaEw4SlRkUG1mUUJMRTBSc3JEeXI5WC9aZHhOCkJRcytnemNROW9qTXllT0I4UVFTckxXOFZ4MkdJN3ZkL3pqaldUa0tVMktHWWtpR2p6MHlKck1iSU11VTdkUVQKVDdMZE5LKzRDYWhqejhNNjdxbGova2NlNitwSlRLdHZKR2tNSDRYUXJyMFRmU3hLMmEwUUNmNkZwSXp2OFFEMApISE9HbFJaWlBYK1dXYVA2UFpFU3JSZG1vbmFKaTJlRG03b1Y1WU1DMExWTHJzMVprZS9FT01CODZYOVlraGJUCmJsRkxRZjlNR1hTdWtGeW1MSnFSd01DUjJxZytKSXpEU1BuYzkzbjNwcHl4Nys3UkhFeXZNMFVNOVhyeHQrNHcKUkd3ZVZlRUNnWUVBeElkaFRCdW4rRk52YkVhSHZUdlpzNkVCa1lJUXUyV0NDR3dWN1lPbTZzc0hzczJBaldrVgprQ0pMajhZMTFpMHd0Y21yOG9DcE1EN0FDRWxMSWFEK3RubW5CTzlkQ2NnTzJoNXFCSkY1UytJeFlGcVZ5ZVBsCnptQkE2VzFvdzB2Y1hsYmkrVUg4SWF3WnNLaFlMaklscmdmQ3YwaU9LNzBYaEF3YzZ6Vlk4TjhDZ1lFQTlXYUUKMklkNjJEaGxLWVRaNW5yY3g1aVN3WU1jaitMTE5FYTFZMlZFNEhZZktvbjFkRnNSa2NKV1YyRVpoRGlqcVIyaQpXZEdEVldiMVVaVEpiM3BZWW1NakJFQXhFbEJXTSt0SzhialRqMWhxbXJPQWhLU0ZYUjg4RkNEanVkcStSbmo4CklyZFlWanNCdDA5RkVkT2RqdVFseGgyRVdQWDNPdVFhRXd5WnNYOENnWUJzekNtZ0VadHVqUG9kTGZxTlZ5blIKR0t3ZW1xdWFvcnBXNFVkT1l0aXdHTS9kTzRrVVAvMlErbnRzVDZXVU9SWkRQUzgwbytlRjd1Y3VieXpwcEEvKwpndUJraWdLdW5KTWtTendUNVZrS0dtR05YdmlYZU5QSzZWeG1IWXltdVVONDhvN2F3SjNOSWxKaWl2K3VLMUxTCndqY2M0QlRjditUWjFEN2FNNEZXYndLQmdHY1MyNE96VEJiYmdTb3lRZS83OVJYazhPZFU4YjlCN0VZVjJRUloKdWRkcDVlZFJNUWJoWlh6S21zZHk0bXZWK25BRElYa0dkbHA5dDFhLzN1ZnpCSUsyenpOdTN1MnBUcnZaL1kyUQpLMVJQTjkrb3U3ZDYvd1ZCSkZQMENKSzgzU1R1bGtEaXI3andhZVViNTQvNFNYcUdPNU4rUEdPOVZFMnBGNGFlCnlVTnpBb0dCQUptMU1vcFQ4N0llelBmQ010ck51cXVqQjFpdStvb1lIYm9IbGJXZUNxS3RSRnNYMWhXOWpTY1UKQ0ZRanhSVCtPcENVWndjbDdkY2xsTUlxQTRWQ1NmUUFRMW9CMU41WENRWE8xVFlXOHU1K1BRTUdUcFEvQlVEawp6WmRJZzZqQkFXd3R6YkNzKzRjVkFoclN3cDRBSXFvcndTZU1qRmdsTmNoNzgxMEF6emNJCi0tLS0tRU5EIFJTQSBQUklWQVRFIEtFWS0tLS0tCg== diff --git a/version.json b/version.json index 28dc9b8..e05faf5 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.3", + "version": "1.4", "publicReleaseRefSpec": [ "^refs/heads/master$", // we release out of master ],