Skip to content

Commit

Permalink
[formatting]
Browse files Browse the repository at this point in the history
  • Loading branch information
jefflill committed Jul 17, 2023
1 parent 420ac8b commit a6a7ab6
Showing 1 changed file with 87 additions and 87 deletions.
174 changes: 87 additions & 87 deletions Lib/Neon.Kube/Kubernetes/KubernetesExtensions.ClusterCustomObjects.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,17 +126,17 @@ public static partial class KubernetesExtensions
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The deserialized object list.</returns>
public static async Task<V1CustomObjectList<T>> ListClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -248,17 +248,17 @@ public static async Task<V1CustomObjectList<T>> ListClusterCustomObjectAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The deserialized object list.</returns>
public static async Task<HttpOperationResponse<object>> ListClusterCustomObjectWithHttpMessagesAsync<T>(
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
{
Expand Down Expand Up @@ -371,20 +371,20 @@ public static async Task<HttpOperationResponse<object>> ListClusterCustomObjectW
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The deserialized object list.</returns>
public static async Task<V1CustomObjectList<KubernetesObjectMetadata>> 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<ArgumentNullException>(!string.IsNullOrEmpty(group), nameof(group));
Expand Down Expand Up @@ -431,12 +431,12 @@ public static async Task<V1CustomObjectList<KubernetesObjectMetadata>> ListClust
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The new object.</returns>
public static async Task<T> CreateClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -469,9 +469,9 @@ public static async Task<T> CreateClusterCustomObjectAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The deserialized object.</returns>
public static async Task<T> ReadClusterCustomObjectAsync<T>(
this ICustomObjectsOperations k8s,
string name,
CancellationToken cancellationToken = default)
this ICustomObjectsOperations k8s,
string name,
CancellationToken cancellationToken = default)

where T : IKubernetesObject<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -509,12 +509,12 @@ public static async Task<T> ReadClusterCustomObjectAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The updated object.</returns>
public static async Task<T> ReplaceClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -556,12 +556,12 @@ public static async Task<T> ReplaceClusterCustomObjectAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The updated object.</returns>
public static async Task<T> UpsertClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -627,13 +627,13 @@ public static async Task<T> UpsertClusterCustomObjectAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The updated custom object.</returns>
public static async Task<T> PatchClusterCustomObjectStatusAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -685,13 +685,13 @@ public static async Task<T> PatchClusterCustomObjectStatusAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The updated custom object.</returns>
public static async Task<T> PatchClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -749,14 +749,14 @@ public static async Task<T> PatchClusterCustomObjectAsync<T>(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The tracking <see cref="Task"/>.</returns>
public static async Task DeleteClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down Expand Up @@ -826,14 +826,14 @@ await k8s.DeleteClusterCustomObjectAsync(
/// <param name="cancellationToken">Optionally specifies a cancellation token.</param>
/// <returns>The tracking <see cref="Task"/>.</returns>
public static async Task DeleteClusterCustomObjectAsync<T>(
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<V1ObjectMeta>, new()
{
Expand Down

0 comments on commit a6a7ab6

Please sign in to comment.