From a6a7ab69dde2a98ba17430f4dc8685a6d8401a02 Mon Sep 17 00:00:00 2001 From: Jeff Lill Date: Sun, 16 Jul 2023 18:13:53 -0700 Subject: [PATCH] [formatting] --- ...bernetesExtensions.ClusterCustomObjects.cs | 174 +++++++++--------- 1 file changed, 87 insertions(+), 87 deletions(-) diff --git a/Lib/Neon.Kube/Kubernetes/KubernetesExtensions.ClusterCustomObjects.cs b/Lib/Neon.Kube/Kubernetes/KubernetesExtensions.ClusterCustomObjects.cs index 9d2323618..302c65893 100644 --- a/Lib/Neon.Kube/Kubernetes/KubernetesExtensions.ClusterCustomObjects.cs +++ b/Lib/Neon.Kube/Kubernetes/KubernetesExtensions.ClusterCustomObjects.cs @@ -126,17 +126,17 @@ public static partial class KubernetesExtensions /// Optionally specifies a cancellation token. /// The deserialized object list. public static async Task> ListClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - bool? allowWatchBookmarks = null, - string continueParameter = null, - string fieldSelector = null, - string labelSelector = null, - int? limit = null, - string resourceVersion = null, - string resourceVersionMatch = null, - int? timeoutSeconds = null, - bool? watch = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + bool? allowWatchBookmarks = null, + string continueParameter = null, + string fieldSelector = null, + string labelSelector = null, + int? limit = null, + string resourceVersion = null, + string resourceVersionMatch = null, + int? timeoutSeconds = null, + bool? watch = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -248,17 +248,17 @@ public static async Task> ListClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The deserialized object list. public static async Task> ListClusterCustomObjectWithHttpMessagesAsync( - this ICustomObjectsOperations k8s, - bool? allowWatchBookmarks = null, - string continueParameter = null, - string fieldSelector = null, - string labelSelector = null, - int? limit = null, - string resourceVersion = null, - string resourceVersionMatch = null, - int? timeoutSeconds = null, - bool? watch = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + bool? allowWatchBookmarks = null, + string continueParameter = null, + string fieldSelector = null, + string labelSelector = null, + int? limit = null, + string resourceVersion = null, + string resourceVersionMatch = null, + int? timeoutSeconds = null, + bool? watch = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject { @@ -371,20 +371,20 @@ public static async Task> ListClusterCustomObjectW /// Optionally specifies a cancellation token. /// The deserialized object list. public static async Task> ListClusterCustomObjectMetadataAsync( - this ICustomObjectsOperations k8s, - string group, - string version, - string plural, - bool? allowWatchBookmarks = null, - string continueParameter = null, - string fieldSelector = null, - string labelSelector = null, - int? limit = null, - string resourceVersion = null, - string resourceVersionMatch = null, - int? timeoutSeconds = null, - bool? watch = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + string group, + string version, + string plural, + bool? allowWatchBookmarks = null, + string continueParameter = null, + string fieldSelector = null, + string labelSelector = null, + int? limit = null, + string resourceVersion = null, + string resourceVersionMatch = null, + int? timeoutSeconds = null, + bool? watch = null, + CancellationToken cancellationToken = default) { await SyncContext.Clear; Covenant.Requires(!string.IsNullOrEmpty(group), nameof(group)); @@ -431,12 +431,12 @@ public static async Task> ListClust /// Optionally specifies a cancellation token. /// The new object. public static async Task CreateClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - T body, - string name, - string dryRun = null, - string fieldManager = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + T body, + string name, + string dryRun = null, + string fieldManager = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -469,9 +469,9 @@ public static async Task CreateClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The deserialized object. public static async Task ReadClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - string name, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + string name, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -509,12 +509,12 @@ public static async Task ReadClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The updated object. public static async Task ReplaceClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - T body, - string name, - string dryRun = null, - string fieldManager = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + T body, + string name, + string dryRun = null, + string fieldManager = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -556,12 +556,12 @@ public static async Task ReplaceClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The updated object. public static async Task UpsertClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - T body, - string name, - string dryRun = null, - string fieldManager = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + T body, + string name, + string dryRun = null, + string fieldManager = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -627,13 +627,13 @@ public static async Task UpsertClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The updated custom object. public static async Task PatchClusterCustomObjectStatusAsync( - this ICustomObjectsOperations k8s, - V1Patch patch, - string name, - string dryRun = null, - string fieldManager = null, - bool? force = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + V1Patch patch, + string name, + string dryRun = null, + string fieldManager = null, + bool? force = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -685,13 +685,13 @@ public static async Task PatchClusterCustomObjectStatusAsync( /// Optionally specifies a cancellation token. /// The updated custom object. public static async Task PatchClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - V1Patch patch, - string name, - string dryRun = null, - string fieldManager = null, - bool? force = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + V1Patch patch, + string name, + string dryRun = null, + string fieldManager = null, + bool? force = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -749,14 +749,14 @@ public static async Task PatchClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The tracking . public static async Task DeleteClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - string name, - V1DeleteOptions body = null, - int? gracePeriodSeconds = null, - bool? orphanDependents = null, - string propagationPolicy = null, - string dryRun = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + string name, + V1DeleteOptions body = null, + int? gracePeriodSeconds = null, + bool? orphanDependents = null, + string propagationPolicy = null, + string dryRun = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() { @@ -826,14 +826,14 @@ await k8s.DeleteClusterCustomObjectAsync( /// Optionally specifies a cancellation token. /// The tracking . public static async Task DeleteClusterCustomObjectAsync( - this ICustomObjectsOperations k8s, - T @object, - V1DeleteOptions body = null, - int? gracePeriodSeconds = null, - bool? orphanDependents = null, - string propagationPolicy = null, - string dryRun = null, - CancellationToken cancellationToken = default) + this ICustomObjectsOperations k8s, + T @object, + V1DeleteOptions body = null, + int? gracePeriodSeconds = null, + bool? orphanDependents = null, + string propagationPolicy = null, + string dryRun = null, + CancellationToken cancellationToken = default) where T : IKubernetesObject, new() {