diff --git a/src/KubernetesClient.csproj b/src/KubernetesClient.csproj index 56e97d5b0..b8acb25c6 100644 --- a/src/KubernetesClient.csproj +++ b/src/KubernetesClient.csproj @@ -16,6 +16,7 @@ + diff --git a/src/V1Patch.cs b/src/V1Patch.cs new file mode 100644 index 000000000..d4eb7dca5 --- /dev/null +++ b/src/V1Patch.cs @@ -0,0 +1,55 @@ +using System; +using Microsoft.AspNetCore.JsonPatch; +using Newtonsoft.Json; + +namespace k8s.Models +{ + internal class V1PathJsonConverter : JsonConverter + { + public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) + { + serializer.Serialize(writer, (value as V1Patch)?.Content); + } + + // no read patch object supported at the moment + public override object ReadJson(JsonReader reader, Type objectType, object existingValue, + JsonSerializer serializer) + { + throw new NotImplementedException(); + } + + public override bool CanConvert(Type objectType) + { + return objectType == typeof(V1Patch); + } + } + + [JsonConverter(typeof(V1PathJsonConverter))] + public partial class V1Patch + { + + public enum PathType + { + JsonPatch, + MergePatch, + StrategicMergePatch, + } + + public PathType Type { get; private set; } + + public V1Patch(IJsonPatchDocument jsonPatch) : this((object) jsonPatch) + { + } + + partial void CustomInit() + { + if (Content is IJsonPatchDocument) + { + Type = PathType.JsonPatch; + return; + } + + throw new NotSupportedException(); + } + } +} diff --git a/src/generated/IKubernetes.cs b/src/generated/IKubernetes.cs index bd509cf7c..2cc9aecb2 100644 --- a/src/generated/IKubernetes.cs +++ b/src/generated/IKubernetes.cs @@ -908,7 +908,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedConfigMapWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Endpoints @@ -1211,7 +1211,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedEndpointsWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Event @@ -1514,7 +1514,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedEventWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind LimitRange @@ -1817,7 +1817,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedLimitRangeWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PersistentVolumeClaim @@ -2120,7 +2120,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified PersistentVolumeClaim @@ -2184,7 +2184,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Pod @@ -2487,7 +2487,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPodWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to attach of Pod @@ -3105,7 +3105,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPodStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodTemplate @@ -3408,7 +3408,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPodTemplateWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicationController @@ -3711,7 +3711,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicationController @@ -3775,7 +3775,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicationController @@ -3839,7 +3839,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ResourceQuota @@ -4142,7 +4142,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedResourceQuotaWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ResourceQuota @@ -4206,7 +4206,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Secret @@ -4509,7 +4509,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedSecretWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ServiceAccount @@ -4812,7 +4812,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedServiceAccountWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Service @@ -5008,7 +5008,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedServiceWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to proxy of Service @@ -5378,7 +5378,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedServiceStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read the specified Namespace @@ -5480,7 +5480,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespaceWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespaceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace finalize of the specified Namespace @@ -5554,7 +5554,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespaceStatusWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNamespaceStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Node @@ -5836,7 +5836,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNodeWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNodeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// connect GET requests to proxy of Node @@ -6113,7 +6113,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNodeStatusWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchNodeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PersistentVolumeClaim @@ -6477,7 +6477,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchPersistentVolumeWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPersistentVolumeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified PersistentVolume @@ -6532,7 +6532,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Pod @@ -8051,7 +8051,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchExternalAdmissionHookConfigurationWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchExternalAdmissionHookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind InitializerConfiguration @@ -8333,7 +8333,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchInitializerConfigurationWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchInitializerConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -8637,7 +8637,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace status of the specified CustomResourceDefinition @@ -8960,7 +8960,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchAPIServiceWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchAPIServiceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace status of the specified APIService @@ -9468,7 +9468,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedControllerRevisionWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -9771,7 +9771,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create rollback of a Deployment @@ -9857,7 +9857,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -9921,7 +9921,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -10224,7 +10224,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified StatefulSet @@ -10288,7 +10288,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified StatefulSet @@ -10352,7 +10352,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -10994,7 +10994,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedControllerRevision1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind DaemonSet @@ -11297,7 +11297,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified DaemonSet @@ -11361,7 +11361,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -11664,7 +11664,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeployment1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified Deployment @@ -11728,7 +11728,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScale1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -11792,7 +11792,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -12095,7 +12095,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicaSet @@ -12159,7 +12159,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicaSet @@ -12223,7 +12223,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind StatefulSet @@ -12526,7 +12526,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSet1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified StatefulSet @@ -12590,7 +12590,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified StatefulSet @@ -12654,7 +12654,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -13457,7 +13457,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified HorizontalPodAutoscaler @@ -13521,7 +13521,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -13917,7 +13917,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified HorizontalPodAutoscaler @@ -13981,7 +13981,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -14388,7 +14388,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedJobWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Job @@ -14452,7 +14452,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedJobStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -14848,7 +14848,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedCronJobWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified CronJob @@ -14912,7 +14912,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedCronJobStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -15308,7 +15308,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedCronJob1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified CronJob @@ -15372,7 +15372,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedCronJobStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -15676,7 +15676,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchCertificateSigningRequestWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchCertificateSigningRequestWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// replace approval of the specified CertificateSigningRequest @@ -16285,7 +16285,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSet1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified DaemonSet @@ -16349,7 +16349,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Deployment @@ -16652,7 +16652,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeployment2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// create rollback of a Deployment @@ -16738,7 +16738,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentScale2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Deployment @@ -16802,7 +16802,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Ingress @@ -17105,7 +17105,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedIngressWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified Ingress @@ -17169,7 +17169,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedIngressStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -17472,7 +17472,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedNetworkPolicyWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -17775,7 +17775,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSet1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicaSet @@ -17839,7 +17839,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified ReplicaSet @@ -17903,7 +17903,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read scale of the specified ReplicationControllerDummy @@ -17967,7 +17967,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -18331,7 +18331,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchPodSecurityPolicyWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPodSecurityPolicyWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ReplicaSet @@ -18738,7 +18738,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind NetworkPolicy @@ -19145,7 +19145,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// read status of the specified PodDisruptionBudget @@ -19209,7 +19209,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodDisruptionBudget @@ -19587,7 +19587,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchClusterRoleBindingWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRole @@ -19861,7 +19861,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchClusterRoleWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -20156,7 +20156,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedRoleBindingWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Role @@ -20451,7 +20451,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedRoleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -20900,7 +20900,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchClusterRoleBinding1WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRole @@ -21174,7 +21174,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchClusterRole1WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRole1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -21469,7 +21469,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedRoleBinding1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Role @@ -21764,7 +21764,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedRole1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -22213,7 +22213,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchClusterRoleBinding2WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind ClusterRole @@ -22487,7 +22487,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchClusterRole2WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchClusterRole2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -22782,7 +22782,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedRoleBinding2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind Role @@ -23077,7 +23077,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedRole2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind RoleBinding @@ -23545,7 +23545,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchPriorityClassWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchPriorityClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get information of a group @@ -23870,7 +23870,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchNamespacedPodPresetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// list or watch objects of kind PodPreset @@ -24256,7 +24256,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchStorageClassWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchStorageClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// get available resources @@ -24549,7 +24549,7 @@ public partial interface IKubernetes : System.IDisposable /// /// The cancellation token. /// - Task> PatchStorageClass1WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> PatchStorageClass1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The headers that will be added to request. diff --git a/src/generated/Kubernetes.cs b/src/generated/Kubernetes.cs index ca449950b..34fefacd3 100644 --- a/src/generated/Kubernetes.cs +++ b/src/generated/Kubernetes.cs @@ -3743,7 +3743,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedConfigMapWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -5173,7 +5173,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedEndpointsWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -6603,7 +6603,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedEventWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -8033,7 +8033,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedLimitRangeWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -9463,7 +9463,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -9982,7 +9982,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -11412,7 +11412,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -15686,7 +15686,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -17116,7 +17116,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodTemplateWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -18546,7 +18546,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -19065,7 +19065,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -19584,7 +19584,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -21014,7 +21014,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedResourceQuotaWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -21533,7 +21533,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -22963,7 +22963,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedSecretWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -24393,7 +24393,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedServiceAccountWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -25520,7 +25520,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedServiceWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -28121,7 +28121,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedServiceStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -28838,7 +28838,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespaceWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespaceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -29501,7 +29501,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespaceStatusWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNamespaceStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -30856,7 +30856,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNodeWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNodeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -33274,7 +33274,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNodeStatusWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchNodeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -34870,7 +34870,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchPersistentVolumeWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPersistentVolumeWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -35362,7 +35362,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPersistentVolumeStatusWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -44236,7 +44236,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchExternalAdmissionHookConfigurationWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchExternalAdmissionHookConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -45591,7 +45591,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchInitializerConfigurationWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchInitializerConfigurationWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -47198,7 +47198,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchCustomResourceDefinitionWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -48976,7 +48976,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchAPIServiceWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchAPIServiceWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -51305,7 +51305,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedControllerRevisionWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -52735,7 +52735,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -53434,7 +53434,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -53953,7 +53953,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -55383,7 +55383,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -55902,7 +55902,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -56421,7 +56421,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -58941,7 +58941,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedControllerRevision1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -60371,7 +60371,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -60890,7 +60890,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -62320,7 +62320,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeployment1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -62839,7 +62839,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScale1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -63358,7 +63358,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -64788,7 +64788,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -65307,7 +65307,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -65826,7 +65826,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -67256,7 +67256,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSet1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -67775,7 +67775,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -68294,7 +68294,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -73093,7 +73093,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -73612,7 +73612,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -75409,7 +75409,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -75928,7 +75928,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -77851,7 +77851,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedJobWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -78370,7 +78370,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedJobStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -80167,7 +80167,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJobWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -80686,7 +80686,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJobStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -82483,7 +82483,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJob1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -83002,7 +83002,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedCronJobStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -84615,7 +84615,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchCertificateSigningRequestWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchCertificateSigningRequestWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -87356,7 +87356,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSet1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -87875,7 +87875,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -89305,7 +89305,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeployment2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -90004,7 +90004,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentScale2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -90523,7 +90523,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -91953,7 +91953,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedIngressWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -92472,7 +92472,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedIngressStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -93902,7 +93902,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedNetworkPolicyWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -95332,7 +95332,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSet1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -95851,7 +95851,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -96370,7 +96370,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -96889,7 +96889,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -98491,7 +98491,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchPodSecurityPolicyWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPodSecurityPolicyWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -100408,7 +100408,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -102331,7 +102331,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -102850,7 +102850,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -104686,7 +104686,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleBindingWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleBindingWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -106023,7 +106023,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -107429,7 +107429,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleBindingWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -108841,7 +108841,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -110792,7 +110792,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleBinding1WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleBinding1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -112129,7 +112129,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRole1WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRole1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -113535,7 +113535,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleBinding1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -114947,7 +114947,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRole1WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -116898,7 +116898,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRoleBinding2WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRoleBinding2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -118235,7 +118235,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchClusterRole2WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchClusterRole2WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -119641,7 +119641,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRoleBinding2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -121053,7 +121053,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedRole2WithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -123148,7 +123148,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchPriorityClassWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchPriorityClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -124824,7 +124824,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchNamespacedPodPresetWithHttpMessagesAsync(object 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 pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -126678,7 +126678,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchStorageClassWithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchStorageClassWithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { @@ -128159,7 +128159,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> PatchStorageClass1WithHttpMessagesAsync(object body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> PatchStorageClass1WithHttpMessagesAsync(V1Patch body, string name, string pretty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (body == null) { diff --git a/src/generated/KubernetesExtensions.cs b/src/generated/KubernetesExtensions.cs index 74f0ec180..9d21f1fbc 100644 --- a/src/generated/KubernetesExtensions.cs +++ b/src/generated/KubernetesExtensions.cs @@ -1731,7 +1731,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1ConfigMap PatchNamespacedConfigMap(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ConfigMap PatchNamespacedConfigMap(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedConfigMapAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -1756,7 +1756,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedConfigMapAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedConfigMapWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -2353,7 +2353,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1Endpoints PatchNamespacedEndpoints(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Endpoints PatchNamespacedEndpoints(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedEndpointsAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -2378,7 +2378,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedEndpointsAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedEndpointsWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -2975,7 +2975,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1Event PatchNamespacedEvent(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Event PatchNamespacedEvent(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedEventAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -3000,7 +3000,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedEventAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedEventWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -3597,7 +3597,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1LimitRange PatchNamespacedLimitRange(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1LimitRange PatchNamespacedLimitRange(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedLimitRangeAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -3622,7 +3622,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedLimitRangeAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedLimitRangeWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -4219,7 +4219,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaim(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaim(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPersistentVolumeClaimAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -4244,7 +4244,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedPersistentVolumeClaimAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPersistentVolumeClaimWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -4365,7 +4365,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaimStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaimStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPersistentVolumeClaimStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -4390,7 +4390,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedPersistentVolumeClaimStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPersistentVolumeClaimStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -4987,7 +4987,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1Pod PatchNamespacedPod(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Pod PatchNamespacedPod(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPodAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -5012,7 +5012,7 @@ public static V1APIResourceList GetAPIResources(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedPodAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPodWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -6358,7 +6358,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1Pod PatchNamespacedPodStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Pod PatchNamespacedPodStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPodStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -6383,7 +6383,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedPodStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPodStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -6980,7 +6980,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1PodTemplate PatchNamespacedPodTemplate(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1PodTemplate PatchNamespacedPodTemplate(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPodTemplateAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -7005,7 +7005,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedPodTemplateAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPodTemplateWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -7602,7 +7602,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController PatchNamespacedReplicationController(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController PatchNamespacedReplicationController(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicationControllerAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -7627,7 +7627,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicationControllerWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -7748,7 +7748,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1Scale PatchNamespacedReplicationControllerScale(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Scale PatchNamespacedReplicationControllerScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicationControllerScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -7773,7 +7773,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerScaleAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicationControllerScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -7894,7 +7894,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1ReplicationController PatchNamespacedReplicationControllerStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ReplicationController PatchNamespacedReplicationControllerStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicationControllerStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -7919,7 +7919,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicationControllerStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -8516,7 +8516,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota PatchNamespacedResourceQuota(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota PatchNamespacedResourceQuota(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedResourceQuotaAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -8541,7 +8541,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedResourceQuotaAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedResourceQuotaWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -8662,7 +8662,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1ResourceQuota PatchNamespacedResourceQuotaStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ResourceQuota PatchNamespacedResourceQuotaStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedResourceQuotaStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -8687,7 +8687,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedResourceQuotaStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedResourceQuotaStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -9284,7 +9284,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1Secret PatchNamespacedSecret(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Secret PatchNamespacedSecret(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedSecretAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -9309,7 +9309,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedSecretAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedSecretWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -9906,7 +9906,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1ServiceAccount PatchNamespacedServiceAccount(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1ServiceAccount PatchNamespacedServiceAccount(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedServiceAccountAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -9931,7 +9931,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedServiceAccountAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedServiceAccountWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -10322,7 +10322,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// If 'true', then the output is pretty printed. /// - public static V1Service PatchNamespacedService(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Service PatchNamespacedService(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedServiceAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -10347,7 +10347,7 @@ public static string ConnectPatchNamespacedPodProxyWithPath(this IKubernetes ope /// /// The cancellation token. /// - public static async Task PatchNamespacedServiceAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedServiceWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -11152,7 +11152,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// If 'true', then the output is pretty printed. /// - public static V1Service PatchNamespacedServiceStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Service PatchNamespacedServiceStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedServiceStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -11177,7 +11177,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// The cancellation token. /// - public static async Task PatchNamespacedServiceStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedServiceStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -11381,7 +11381,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace PatchNamespace(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1Namespace PatchNamespace(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchNamespaceAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -11403,7 +11403,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// The cancellation token. /// - public static async Task PatchNamespaceAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespaceAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespaceWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -11553,7 +11553,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// If 'true', then the output is pretty printed. /// - public static V1Namespace PatchNamespaceStatus(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1Namespace PatchNamespaceStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchNamespaceStatusAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -11575,7 +11575,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// The cancellation token. /// - public static async Task PatchNamespaceStatusAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNamespaceStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespaceStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -12133,7 +12133,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// If 'true', then the output is pretty printed. /// - public static V1Node PatchNode(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1Node PatchNode(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchNodeAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -12155,7 +12155,7 @@ public static string ConnectPatchNamespacedServiceProxyWithPath(this IKubernetes /// /// The cancellation token. /// - public static async Task PatchNodeAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNodeAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNodeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -12777,7 +12777,7 @@ public static string ConnectPatchNodeProxyWithPath(this IKubernetes operations, /// /// If 'true', then the output is pretty printed. /// - public static V1Node PatchNodeStatus(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1Node PatchNodeStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchNodeStatusAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -12799,7 +12799,7 @@ public static string ConnectPatchNodeProxyWithPath(this IKubernetes operations, /// /// The cancellation token. /// - public static async Task PatchNodeStatusAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchNodeStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNodeStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -13515,7 +13515,7 @@ public static string ConnectPatchNodeProxyWithPath(this IKubernetes operations, /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume PatchPersistentVolume(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1PersistentVolume PatchPersistentVolume(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchPersistentVolumeAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -13537,7 +13537,7 @@ public static string ConnectPatchNodeProxyWithPath(this IKubernetes operations, /// /// The cancellation token. /// - public static async Task PatchPersistentVolumeAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPersistentVolumeAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchPersistentVolumeWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -13643,7 +13643,7 @@ public static string ConnectPatchNodeProxyWithPath(this IKubernetes operations, /// /// If 'true', then the output is pretty printed. /// - public static V1PersistentVolume PatchPersistentVolumeStatus(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1PersistentVolume PatchPersistentVolumeStatus(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchPersistentVolumeStatusAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -13665,7 +13665,7 @@ public static string ConnectPatchNodeProxyWithPath(this IKubernetes operations, /// /// The cancellation token. /// - public static async Task PatchPersistentVolumeStatusAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPersistentVolumeStatusAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchPersistentVolumeStatusWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -16889,7 +16889,7 @@ public static V1APIResourceList GetAPIResources1(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ExternalAdmissionHookConfiguration PatchExternalAdmissionHookConfiguration(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1alpha1ExternalAdmissionHookConfiguration PatchExternalAdmissionHookConfiguration(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchExternalAdmissionHookConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -16911,7 +16911,7 @@ public static V1APIResourceList GetAPIResources1(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchExternalAdmissionHookConfigurationAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchExternalAdmissionHookConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchExternalAdmissionHookConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -17469,7 +17469,7 @@ public static V1APIResourceList GetAPIResources1(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1InitializerConfiguration PatchInitializerConfiguration(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1alpha1InitializerConfiguration PatchInitializerConfiguration(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchInitializerConfigurationAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -17491,7 +17491,7 @@ public static V1APIResourceList GetAPIResources1(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchInitializerConfigurationAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchInitializerConfigurationAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchInitializerConfigurationWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -18105,7 +18105,7 @@ public static V1APIResourceList GetAPIResources2(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CustomResourceDefinition PatchCustomResourceDefinition(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1CustomResourceDefinition PatchCustomResourceDefinition(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchCustomResourceDefinitionAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -18127,7 +18127,7 @@ public static V1APIResourceList GetAPIResources2(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchCustomResourceDefinitionAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchCustomResourceDefinitionAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchCustomResourceDefinitionWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -18785,7 +18785,7 @@ public static V1APIResourceList GetAPIResources3(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1APIService PatchAPIService(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1APIService PatchAPIService(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchAPIServiceAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -18807,7 +18807,7 @@ public static V1APIResourceList GetAPIResources3(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchAPIServiceAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchAPIServiceAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchAPIServiceWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -19820,7 +19820,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ControllerRevision PatchNamespacedControllerRevision(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ControllerRevision PatchNamespacedControllerRevision(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedControllerRevisionAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -19845,7 +19845,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedControllerRevisionAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedControllerRevisionWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -20442,7 +20442,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment PatchNamespacedDeployment(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment PatchNamespacedDeployment(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -20467,7 +20467,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -20638,7 +20638,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Scale PatchNamespacedDeploymentScale(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Scale PatchNamespacedDeploymentScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -20663,7 +20663,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScaleAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -20784,7 +20784,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Deployment PatchNamespacedDeploymentStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Deployment PatchNamespacedDeploymentStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -20809,7 +20809,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -21406,7 +21406,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet PatchNamespacedStatefulSet(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet PatchNamespacedStatefulSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedStatefulSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -21431,7 +21431,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedStatefulSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -21552,7 +21552,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Appsv1beta1Scale PatchNamespacedStatefulSetScale(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Appsv1beta1Scale PatchNamespacedStatefulSetScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedStatefulSetScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -21577,7 +21577,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetScaleAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedStatefulSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -21698,7 +21698,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StatefulSet PatchNamespacedStatefulSetStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1StatefulSet PatchNamespacedStatefulSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedStatefulSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -21723,7 +21723,7 @@ public static V1APIResourceList GetAPIResources4(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedStatefulSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -22980,7 +22980,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ControllerRevision PatchNamespacedControllerRevision1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ControllerRevision PatchNamespacedControllerRevision1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedControllerRevision1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -23005,7 +23005,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedControllerRevision1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedControllerRevision1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -23602,7 +23602,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet PatchNamespacedDaemonSet(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet PatchNamespacedDaemonSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDaemonSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -23627,7 +23627,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDaemonSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -23748,7 +23748,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2DaemonSet PatchNamespacedDaemonSetStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2DaemonSet PatchNamespacedDaemonSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDaemonSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -23773,7 +23773,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDaemonSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -24370,7 +24370,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment PatchNamespacedDeployment1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment PatchNamespacedDeployment1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeployment1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -24395,7 +24395,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeployment1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeployment1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -24516,7 +24516,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale PatchNamespacedDeploymentScale1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale PatchNamespacedDeploymentScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -24541,7 +24541,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScale1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -24662,7 +24662,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Deployment PatchNamespacedDeploymentStatus1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Deployment PatchNamespacedDeploymentStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -24687,7 +24687,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatus1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -25284,7 +25284,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet PatchNamespacedReplicaSet(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet PatchNamespacedReplicaSet(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicaSetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -25309,7 +25309,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicaSetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -25430,7 +25430,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale PatchNamespacedReplicaSetScale(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale PatchNamespacedReplicaSetScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicaSetScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -25455,7 +25455,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetScaleAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicaSetScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -25576,7 +25576,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2ReplicaSet PatchNamespacedReplicaSetStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2ReplicaSet PatchNamespacedReplicaSetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicaSetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -25601,7 +25601,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicaSetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -26198,7 +26198,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet PatchNamespacedStatefulSet1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet PatchNamespacedStatefulSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedStatefulSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -26223,7 +26223,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSet1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedStatefulSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -26344,7 +26344,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2Scale PatchNamespacedStatefulSetScale1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2Scale PatchNamespacedStatefulSetScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedStatefulSetScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -26369,7 +26369,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetScale1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedStatefulSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -26490,7 +26490,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta2StatefulSet PatchNamespacedStatefulSetStatus1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta2StatefulSet PatchNamespacedStatefulSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedStatefulSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -26515,7 +26515,7 @@ public static V1APIResourceList GetAPIResources5(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedStatefulSetStatus1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedStatefulSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -28202,7 +28202,7 @@ public static V1APIResourceList GetAPIResources10(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedHorizontalPodAutoscalerAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -28227,7 +28227,7 @@ public static V1APIResourceList GetAPIResources10(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -28348,7 +28348,7 @@ public static V1APIResourceList GetAPIResources10(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedHorizontalPodAutoscalerStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -28373,7 +28373,7 @@ public static V1APIResourceList GetAPIResources10(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -29156,7 +29156,7 @@ public static V1APIResourceList GetAPIResources11(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscaler1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedHorizontalPodAutoscaler1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -29181,7 +29181,7 @@ public static V1APIResourceList GetAPIResources11(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscaler1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedHorizontalPodAutoscaler1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -29302,7 +29302,7 @@ public static V1APIResourceList GetAPIResources11(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V2beta1HorizontalPodAutoscaler PatchNamespacedHorizontalPodAutoscalerStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedHorizontalPodAutoscalerStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -29327,7 +29327,7 @@ public static V1APIResourceList GetAPIResources11(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedHorizontalPodAutoscalerStatus1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedHorizontalPodAutoscalerStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -30138,7 +30138,7 @@ public static V1APIResourceList GetAPIResources12(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1Job PatchNamespacedJob(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Job PatchNamespacedJob(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedJobAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -30163,7 +30163,7 @@ public static V1APIResourceList GetAPIResources12(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedJobAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedJobWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -30284,7 +30284,7 @@ public static V1APIResourceList GetAPIResources12(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1Job PatchNamespacedJobStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Job PatchNamespacedJobStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedJobStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -30309,7 +30309,7 @@ public static V1APIResourceList GetAPIResources12(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedJobStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -31092,7 +31092,7 @@ public static V1APIResourceList GetAPIResources13(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob PatchNamespacedCronJob(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob PatchNamespacedCronJob(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedCronJobAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -31117,7 +31117,7 @@ public static V1APIResourceList GetAPIResources13(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJobAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedCronJobWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -31238,7 +31238,7 @@ public static V1APIResourceList GetAPIResources13(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CronJob PatchNamespacedCronJobStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1CronJob PatchNamespacedCronJobStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedCronJobStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -31263,7 +31263,7 @@ public static V1APIResourceList GetAPIResources13(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJobStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedCronJobStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -32046,7 +32046,7 @@ public static V1APIResourceList GetAPIResources14(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob PatchNamespacedCronJob1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob PatchNamespacedCronJob1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedCronJob1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -32071,7 +32071,7 @@ public static V1APIResourceList GetAPIResources14(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJob1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedCronJob1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -32192,7 +32192,7 @@ public static V1APIResourceList GetAPIResources14(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V2alpha1CronJob PatchNamespacedCronJobStatus1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V2alpha1CronJob PatchNamespacedCronJobStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedCronJobStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -32217,7 +32217,7 @@ public static V1APIResourceList GetAPIResources14(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedCronJobStatus1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedCronJobStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -32831,7 +32831,7 @@ public static V1APIResourceList GetAPIResources15(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1CertificateSigningRequest PatchCertificateSigningRequest(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1CertificateSigningRequest PatchCertificateSigningRequest(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchCertificateSigningRequestAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -32853,7 +32853,7 @@ public static V1APIResourceList GetAPIResources15(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchCertificateSigningRequestAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchCertificateSigningRequestAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchCertificateSigningRequestWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -34068,7 +34068,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet PatchNamespacedDaemonSet1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet PatchNamespacedDaemonSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDaemonSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -34093,7 +34093,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSet1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDaemonSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -34214,7 +34214,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1DaemonSet PatchNamespacedDaemonSetStatus1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1DaemonSet PatchNamespacedDaemonSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDaemonSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -34239,7 +34239,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDaemonSetStatus1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDaemonSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -34836,7 +34836,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment PatchNamespacedDeployment2(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment PatchNamespacedDeployment2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeployment2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -34861,7 +34861,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeployment2Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeployment2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -35032,7 +35032,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale PatchNamespacedDeploymentScale2(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale PatchNamespacedDeploymentScale2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentScale2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -35057,7 +35057,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentScale2Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentScale2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -35178,7 +35178,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Deployment PatchNamespacedDeploymentStatus2(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Deployment PatchNamespacedDeploymentStatus2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedDeploymentStatus2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -35203,7 +35203,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedDeploymentStatus2Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedDeploymentStatus2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -35800,7 +35800,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress PatchNamespacedIngress(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress PatchNamespacedIngress(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedIngressAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -35825,7 +35825,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedIngressAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedIngressWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -35946,7 +35946,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Ingress PatchNamespacedIngressStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Ingress PatchNamespacedIngressStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedIngressStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -35971,7 +35971,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedIngressStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedIngressStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -36568,7 +36568,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1NetworkPolicy PatchNamespacedNetworkPolicy(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1NetworkPolicy PatchNamespacedNetworkPolicy(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedNetworkPolicyAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -36593,7 +36593,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedNetworkPolicyAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedNetworkPolicyWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -37190,7 +37190,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet PatchNamespacedReplicaSet1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet PatchNamespacedReplicaSet1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicaSet1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -37215,7 +37215,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSet1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicaSet1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -37336,7 +37336,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale PatchNamespacedReplicaSetScale1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale PatchNamespacedReplicaSetScale1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicaSetScale1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -37361,7 +37361,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetScale1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicaSetScale1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -37482,7 +37482,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ReplicaSet PatchNamespacedReplicaSetStatus1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1ReplicaSet PatchNamespacedReplicaSetStatus1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicaSetStatus1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -37507,7 +37507,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicaSetStatus1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicaSetStatus1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -37628,7 +37628,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static Extensionsv1beta1Scale PatchNamespacedReplicationControllerDummyScale(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static Extensionsv1beta1Scale PatchNamespacedReplicationControllerDummyScale(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedReplicationControllerDummyScaleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -37653,7 +37653,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedReplicationControllerDummyScaleAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedReplicationControllerDummyScaleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -38369,7 +38369,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodSecurityPolicy PatchPodSecurityPolicy(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1PodSecurityPolicy PatchPodSecurityPolicy(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchPodSecurityPolicyAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -38391,7 +38391,7 @@ public static V1APIResourceList GetAPIResources16(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchPodSecurityPolicyAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPodSecurityPolicyAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchPodSecurityPolicyWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -39202,7 +39202,7 @@ public static V1APIResourceList GetAPIResources17(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1NetworkPolicy PatchNamespacedNetworkPolicy1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1NetworkPolicy PatchNamespacedNetworkPolicy1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedNetworkPolicy1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -39227,7 +39227,7 @@ public static V1APIResourceList GetAPIResources17(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedNetworkPolicy1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedNetworkPolicy1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -40038,7 +40038,7 @@ public static V1APIResourceList GetAPIResources18(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudget(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudget(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPodDisruptionBudgetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -40063,7 +40063,7 @@ public static V1APIResourceList GetAPIResources18(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedPodDisruptionBudgetAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPodDisruptionBudgetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -40184,7 +40184,7 @@ public static V1APIResourceList GetAPIResources18(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudgetStatus(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1PodDisruptionBudget PatchNamespacedPodDisruptionBudgetStatus(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPodDisruptionBudgetStatusAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -40209,7 +40209,7 @@ public static V1APIResourceList GetAPIResources18(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedPodDisruptionBudgetStatusAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPodDisruptionBudgetStatusWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -40965,7 +40965,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRoleBinding PatchClusterRoleBinding(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1ClusterRoleBinding PatchClusterRoleBinding(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchClusterRoleBindingAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -40987,7 +40987,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchClusterRoleBindingAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleBindingAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchClusterRoleBindingWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -41529,7 +41529,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1ClusterRole PatchClusterRole(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1ClusterRole PatchClusterRole(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchClusterRoleAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -41551,7 +41551,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchClusterRoleAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchClusterRoleWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -42132,7 +42132,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1RoleBinding PatchNamespacedRoleBinding(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1RoleBinding PatchNamespacedRoleBinding(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedRoleBindingAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -42157,7 +42157,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleBindingAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedRoleBindingWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -42738,7 +42738,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1Role PatchNamespacedRole(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1Role PatchNamespacedRole(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedRoleAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -42763,7 +42763,7 @@ public static V1APIResourceList GetAPIResources19(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedRoleWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -43649,7 +43649,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRoleBinding PatchClusterRoleBinding1(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1alpha1ClusterRoleBinding PatchClusterRoleBinding1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchClusterRoleBinding1Async(body, name, pretty).GetAwaiter().GetResult(); } @@ -43671,7 +43671,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchClusterRoleBinding1Async(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleBinding1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchClusterRoleBinding1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -44213,7 +44213,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1ClusterRole PatchClusterRole1(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1alpha1ClusterRole PatchClusterRole1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchClusterRole1Async(body, name, pretty).GetAwaiter().GetResult(); } @@ -44235,7 +44235,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchClusterRole1Async(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRole1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchClusterRole1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -44816,7 +44816,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1RoleBinding PatchNamespacedRoleBinding1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1RoleBinding PatchNamespacedRoleBinding1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedRoleBinding1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -44841,7 +44841,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleBinding1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedRoleBinding1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -45422,7 +45422,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1Role PatchNamespacedRole1(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1Role PatchNamespacedRole1(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedRole1Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -45447,7 +45447,7 @@ public static V1APIResourceList GetAPIResources20(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedRole1Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedRole1WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -46333,7 +46333,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRoleBinding PatchClusterRoleBinding2(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1ClusterRoleBinding PatchClusterRoleBinding2(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchClusterRoleBinding2Async(body, name, pretty).GetAwaiter().GetResult(); } @@ -46355,7 +46355,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchClusterRoleBinding2Async(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRoleBinding2Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchClusterRoleBinding2WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -46897,7 +46897,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1ClusterRole PatchClusterRole2(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1ClusterRole PatchClusterRole2(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchClusterRole2Async(body, name, pretty).GetAwaiter().GetResult(); } @@ -46919,7 +46919,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchClusterRole2Async(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchClusterRole2Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchClusterRole2WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -47500,7 +47500,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1RoleBinding PatchNamespacedRoleBinding2(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1RoleBinding PatchNamespacedRoleBinding2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedRoleBinding2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -47525,7 +47525,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedRoleBinding2Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedRoleBinding2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -48106,7 +48106,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1Role PatchNamespacedRole2(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1beta1Role PatchNamespacedRole2(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedRole2Async(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -48131,7 +48131,7 @@ public static V1APIResourceList GetAPIResources21(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedRole2Async(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedRole2WithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -49061,7 +49061,7 @@ public static V1APIResourceList GetAPIResources22(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PriorityClass PatchPriorityClass(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1alpha1PriorityClass PatchPriorityClass(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchPriorityClassAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -49083,7 +49083,7 @@ public static V1APIResourceList GetAPIResources22(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchPriorityClassAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchPriorityClassAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchPriorityClassWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -49736,7 +49736,7 @@ public static V1APIResourceList GetAPIResources23(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1alpha1PodPreset PatchNamespacedPodPreset(this IKubernetes operations, object body, string name, string namespaceParameter, string pretty = default(string)) + public static V1alpha1PodPreset PatchNamespacedPodPreset(this IKubernetes operations, V1Patch body, string name, string namespaceParameter, string pretty = default(string)) { return operations.PatchNamespacedPodPresetAsync(body, name, namespaceParameter, pretty).GetAwaiter().GetResult(); } @@ -49761,7 +49761,7 @@ public static V1APIResourceList GetAPIResources23(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchNamespacedPodPresetAsync(this IKubernetes operations, object 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 pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchNamespacedPodPresetWithHttpMessagesAsync(body, name, namespaceParameter, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -50533,7 +50533,7 @@ public static V1APIResourceList GetAPIResources24(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1StorageClass PatchStorageClass(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1StorageClass PatchStorageClass(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchStorageClassAsync(body, name, pretty).GetAwaiter().GetResult(); } @@ -50555,7 +50555,7 @@ public static V1APIResourceList GetAPIResources24(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchStorageClassAsync(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchStorageClassAsync(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchStorageClassWithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { @@ -51141,7 +51141,7 @@ public static V1APIResourceList GetAPIResources25(this IKubernetes operations) /// /// If 'true', then the output is pretty printed. /// - public static V1beta1StorageClass PatchStorageClass1(this IKubernetes operations, object body, string name, string pretty = default(string)) + public static V1beta1StorageClass PatchStorageClass1(this IKubernetes operations, V1Patch body, string name, string pretty = default(string)) { return operations.PatchStorageClass1Async(body, name, pretty).GetAwaiter().GetResult(); } @@ -51163,7 +51163,7 @@ public static V1APIResourceList GetAPIResources25(this IKubernetes operations) /// /// The cancellation token. /// - public static async Task PatchStorageClass1Async(this IKubernetes operations, object body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PatchStorageClass1Async(this IKubernetes operations, V1Patch body, string name, string pretty = default(string), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.PatchStorageClass1WithHttpMessagesAsync(body, name, pretty, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/generated/Models/V1Patch.cs b/src/generated/Models/V1Patch.cs new file mode 100644 index 000000000..ca62408c7 --- /dev/null +++ b/src/generated/Models/V1Patch.cs @@ -0,0 +1,42 @@ +// +// 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; + + public partial class V1Patch + { + /// + /// Initializes a new instance of the V1Patch class. + /// + public V1Patch() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the V1Patch class. + /// + public V1Patch(object content = default(object)) + { + Content = content; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "content")] + public object Content { get; private set; } + + } +} diff --git a/src/generated/swagger.json b/src/generated/swagger.json index cdfa29dc1..48214b304 100644 --- a/src/generated/swagger.json +++ b/src/generated/swagger.json @@ -1300,8 +1300,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -1789,8 +1788,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -2278,8 +2276,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -2767,8 +2764,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -3256,8 +3252,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -3411,8 +3406,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -3900,8 +3894,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -5177,8 +5170,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -5666,8 +5658,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -6155,8 +6146,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -6310,8 +6300,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -6465,8 +6454,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -6954,8 +6942,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -7109,8 +7096,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -7598,8 +7584,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -8087,8 +8072,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -8452,8 +8436,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -9131,8 +9114,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -9368,8 +9350,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -9579,8 +9560,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -10052,8 +10032,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -10707,8 +10686,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -11284,8 +11262,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -11431,8 +11408,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -17371,8 +17347,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -17844,8 +17819,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -18667,8 +18641,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -19412,8 +19385,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -20373,8 +20345,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -20862,8 +20833,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -21089,8 +21059,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -21244,8 +21213,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -21733,8 +21701,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -21888,8 +21855,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -22043,8 +22009,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -23656,8 +23621,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -24145,8 +24109,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -24300,8 +24263,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -24789,8 +24751,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -24944,8 +24905,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -25099,8 +25059,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -25588,8 +25547,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -25743,8 +25701,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -25898,8 +25855,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -26387,8 +26343,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -26542,8 +26497,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -26697,8 +26651,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -29463,8 +29416,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -29618,8 +29570,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -30469,8 +30420,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -30624,8 +30574,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -31508,8 +31457,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -31663,8 +31611,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -32514,8 +32461,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -32669,8 +32615,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -33520,8 +33465,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -33675,8 +33619,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -34447,8 +34390,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -35576,8 +35518,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -35731,8 +35672,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -36220,8 +36160,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -36447,8 +36386,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -36602,8 +36540,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -37091,8 +37028,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -37246,8 +37182,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -37735,8 +37670,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -38224,8 +38158,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -38379,8 +38312,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -38534,8 +38466,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -38689,8 +38620,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -39274,8 +39204,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -41192,8 +41121,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -42076,8 +42004,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -42231,8 +42158,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -43091,8 +43017,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -43548,8 +43473,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -44013,8 +43937,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -44486,8 +44409,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -45926,8 +45848,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -46383,8 +46304,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -46848,8 +46768,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -47321,8 +47240,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -48761,8 +48679,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -49218,8 +49135,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -49683,8 +49599,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -50156,8 +50071,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -51645,8 +51559,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -52334,8 +52247,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -53210,8 +53122,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -53858,8 +53769,7 @@ "in": "body", "required": true, "schema": { - "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", - "type": "object" + "$ref": "#/definitions/v1.Patch" } } ], @@ -65667,6 +65577,9 @@ } ] }, + "v1.Patch": { + "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body." + }, "v1.SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": {