Show / Hide Table of Contents

Interface ICustomObjectsOperations

Namespace: k8s
Assembly: KubernetesClient.dll
Syntax
public interface ICustomObjectsOperations

Methods

View Source

CreateClusterCustomObjectWithHttpMessagesAsync(object, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Creates a cluster scoped Custom object

Declaration
Task<HttpOperationResponse<object>> CreateClusterCustomObjectWithHttpMessagesAsync(object body, string group, string version, string plural, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to create.

string group

The custom resource's group name

string version

The custom resource's version

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

CreateClusterCustomObjectWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Creates a cluster scoped Custom object

Declaration
Task<HttpOperationResponse<T>> CreateClusterCustomObjectWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to create.

string group

The custom resource's group name

string version

The custom resource's version

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

CreateNamespacedCustomObjectWithHttpMessagesAsync(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Creates a namespace scoped Custom object

Declaration
Task<HttpOperationResponse<object>> CreateNamespacedCustomObjectWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to create.

string group

The custom resource's group name

string version

The custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

CreateNamespacedCustomObjectWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Creates a namespace scoped Custom object

Declaration
Task<HttpOperationResponse<T>> CreateNamespacedCustomObjectWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to create.

string group

The custom resource's group name

string version

The custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

DeleteClusterCustomObjectWithHttpMessagesAsync(string, string, string, string, V1DeleteOptions, int?, bool?, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Deletes the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> DeleteClusterCustomObjectWithHttpMessagesAsync(string group, string version, string plural, string name, V1DeleteOptions body = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

V1DeleteOptions body
int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

DeleteClusterCustomObjectWithHttpMessagesAsync<T>(string, string, string, string, V1DeleteOptions, int?, bool?, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Deletes the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> DeleteClusterCustomObjectWithHttpMessagesAsync<T>(string group, string version, string plural, string name, V1DeleteOptions body = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

V1DeleteOptions body
int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

DeleteCollectionClusterCustomObjectWithHttpMessagesAsync(string, string, string, V1DeleteOptions, string, int?, bool?, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Delete collection of cluster scoped custom objects

Declaration
Task<HttpOperationResponse<object>> DeleteCollectionClusterCustomObjectWithHttpMessagesAsync(string group, string version, string plural, V1DeleteOptions body = null, string labelSelector = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

V1DeleteOptions body
string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

DeleteCollectionClusterCustomObjectWithHttpMessagesAsync<T>(string, string, string, V1DeleteOptions, string, int?, bool?, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Delete collection of cluster scoped custom objects

Declaration
Task<HttpOperationResponse<T>> DeleteCollectionClusterCustomObjectWithHttpMessagesAsync<T>(string group, string version, string plural, V1DeleteOptions body = null, string labelSelector = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

V1DeleteOptions body
string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

DeleteCollectionNamespacedCustomObjectWithHttpMessagesAsync(string, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Delete collection of namespace scoped custom objects

Declaration
Task<HttpOperationResponse<object>> DeleteCollectionNamespacedCustomObjectWithHttpMessagesAsync(string group, string version, string namespaceParameter, string plural, V1DeleteOptions body = null, string labelSelector = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, string fieldSelector = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

V1DeleteOptions body
string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

DeleteCollectionNamespacedCustomObjectWithHttpMessagesAsync<T>(string, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Delete collection of namespace scoped custom objects

Declaration
Task<HttpOperationResponse<T>> DeleteCollectionNamespacedCustomObjectWithHttpMessagesAsync<T>(string group, string version, string namespaceParameter, string plural, V1DeleteOptions body = null, string labelSelector = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, string fieldSelector = null, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

V1DeleteOptions body
string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

DeleteNamespacedCustomObjectWithHttpMessagesAsync(string, string, string, string, string, V1DeleteOptions, int?, bool?, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Deletes the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> DeleteNamespacedCustomObjectWithHttpMessagesAsync(string group, string version, string namespaceParameter, string plural, string name, V1DeleteOptions body = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

V1DeleteOptions body
int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

DeleteNamespacedCustomObjectWithHttpMessagesAsync<T>(string, string, string, string, string, V1DeleteOptions, int?, bool?, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Deletes the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> DeleteNamespacedCustomObjectWithHttpMessagesAsync<T>(string group, string version, string namespaceParameter, string plural, string name, V1DeleteOptions body = null, int? gracePeriodSeconds = null, bool? orphanDependents = null, string propagationPolicy = null, string dryRun = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

V1DeleteOptions body
int? gracePeriodSeconds

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

bool? orphanDependents

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

string propagationPolicy

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

GetAPIResourcesWithHttpMessagesAsync(string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

get available resources

Declaration
Task<HttpOperationResponse<V1APIResourceList>> GetAPIResourcesWithHttpMessagesAsync(string group, string version, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<V1APIResourceList>>
View Source

GetClusterCustomObjectScaleWithHttpMessagesAsync(string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read scale of the specified custom object

Declaration
Task<HttpOperationResponse<object>> GetClusterCustomObjectScaleWithHttpMessagesAsync(string group, string version, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

GetClusterCustomObjectScaleWithHttpMessagesAsync<T>(string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read scale of the specified custom object

Declaration
Task<HttpOperationResponse<T>> GetClusterCustomObjectScaleWithHttpMessagesAsync<T>(string group, string version, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

GetClusterCustomObjectStatusWithHttpMessagesAsync(string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read status of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> GetClusterCustomObjectStatusWithHttpMessagesAsync(string group, string version, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

GetClusterCustomObjectStatusWithHttpMessagesAsync<T>(string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read status of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> GetClusterCustomObjectStatusWithHttpMessagesAsync<T>(string group, string version, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

GetClusterCustomObjectWithHttpMessagesAsync(string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Returns a cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> GetClusterCustomObjectWithHttpMessagesAsync(string group, string version, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

GetClusterCustomObjectWithHttpMessagesAsync<T>(string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Returns a cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> GetClusterCustomObjectWithHttpMessagesAsync<T>(string group, string version, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

GetNamespacedCustomObjectScaleWithHttpMessagesAsync(string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read scale of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> GetNamespacedCustomObjectScaleWithHttpMessagesAsync(string group, string version, string namespaceParameter, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

GetNamespacedCustomObjectScaleWithHttpMessagesAsync<T>(string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read scale of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> GetNamespacedCustomObjectScaleWithHttpMessagesAsync<T>(string group, string version, string namespaceParameter, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

GetNamespacedCustomObjectStatusWithHttpMessagesAsync(string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read status of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> GetNamespacedCustomObjectStatusWithHttpMessagesAsync(string group, string version, string namespaceParameter, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

GetNamespacedCustomObjectStatusWithHttpMessagesAsync<T>(string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

read status of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> GetNamespacedCustomObjectStatusWithHttpMessagesAsync<T>(string group, string version, string namespaceParameter, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

GetNamespacedCustomObjectWithHttpMessagesAsync(string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Returns a namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> GetNamespacedCustomObjectWithHttpMessagesAsync(string group, string version, string namespaceParameter, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

GetNamespacedCustomObjectWithHttpMessagesAsync<T>(string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

Returns a namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> GetNamespacedCustomObjectWithHttpMessagesAsync<T>(string group, string version, string namespaceParameter, string plural, string name, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ListClusterCustomObjectWithHttpMessagesAsync(string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

list or watch cluster scoped custom objects

Declaration
Task<HttpOperationResponse<object>> ListClusterCustomObjectWithHttpMessagesAsync(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, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

bool? allowWatchBookmarks

allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

string continueParameter

The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key".

This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? limit

limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

string resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

string resourceVersionMatch

resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

Defaults to unset

int? timeoutSeconds

Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

bool? watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ListClusterCustomObjectWithHttpMessagesAsync<T>(string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

list or watch cluster scoped custom objects

Declaration
Task<HttpOperationResponse<T>> ListClusterCustomObjectWithHttpMessagesAsync<T>(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, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

bool? allowWatchBookmarks

allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

string continueParameter

The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key".

This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? limit

limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

string resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

string resourceVersionMatch

resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

Defaults to unset

int? timeoutSeconds

Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

bool? watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ListCustomObjectForAllNamespacesWithHttpMessagesAsync(string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

list or watch namespace scoped custom objects

Declaration
Task<HttpOperationResponse<object>> ListCustomObjectForAllNamespacesWithHttpMessagesAsync(string group, string version, string resourcePlural, 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, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string resourcePlural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

bool? allowWatchBookmarks

allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

string continueParameter

The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key".

This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? limit

limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

string resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

string resourceVersionMatch

resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

Defaults to unset

int? timeoutSeconds

Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

bool? watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ListCustomObjectForAllNamespacesWithHttpMessagesAsync<T>(string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

list or watch namespace scoped custom objects

Declaration
Task<HttpOperationResponse<T>> ListCustomObjectForAllNamespacesWithHttpMessagesAsync<T>(string group, string version, string resourcePlural, 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, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string resourcePlural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

bool? allowWatchBookmarks

allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

string continueParameter

The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key".

This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? limit

limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

string resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

string resourceVersionMatch

resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

Defaults to unset

int? timeoutSeconds

Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

bool? watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ListNamespacedCustomObjectWithHttpMessagesAsync(string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

list or watch namespace scoped custom objects

Declaration
Task<HttpOperationResponse<object>> ListNamespacedCustomObjectWithHttpMessagesAsync(string group, string version, string namespaceParameter, 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, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

bool? allowWatchBookmarks

allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

string continueParameter

The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key".

This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? limit

limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

string resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

string resourceVersionMatch

resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

Defaults to unset

int? timeoutSeconds

Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

bool? watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ListNamespacedCustomObjectWithHttpMessagesAsync<T>(string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

list or watch namespace scoped custom objects

Declaration
Task<HttpOperationResponse<T>> ListNamespacedCustomObjectWithHttpMessagesAsync<T>(string group, string version, string namespaceParameter, 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, bool? pretty = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string group

The custom resource's group name

string version

The custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

The custom resource's plural name. For TPRs this would be lowercase plural kind.

bool? allowWatchBookmarks

allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. If the feature gate WatchBookmarks is not enabled in apiserver, this field is ignored.

string continueParameter

The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the "next key".

This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

string fieldSelector

A selector to restrict the list of returned objects by their fields. Defaults to everything.

string labelSelector

A selector to restrict the list of returned objects by their labels. Defaults to everything.

int? limit

limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

string resourceVersion

When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

string resourceVersionMatch

resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.

Defaults to unset

int? timeoutSeconds

Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

bool? watch

Watch for changes to the described resources and return them as a stream of add, update, and remove notifications.

bool? pretty

If 'true', then the output is pretty printed.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

PatchClusterCustomObjectScaleWithHttpMessagesAsync(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update scale of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> PatchClusterCustomObjectScaleWithHttpMessagesAsync(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

PatchClusterCustomObjectScaleWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update scale of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> PatchClusterCustomObjectScaleWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

PatchClusterCustomObjectStatusWithHttpMessagesAsync(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update status of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> PatchClusterCustomObjectStatusWithHttpMessagesAsync(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

PatchClusterCustomObjectStatusWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update status of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> PatchClusterCustomObjectStatusWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

PatchClusterCustomObjectWithHttpMessagesAsync(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

patch the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> PatchClusterCustomObjectWithHttpMessagesAsync(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to patch.

string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

PatchClusterCustomObjectWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

patch the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> PatchClusterCustomObjectWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to patch.

string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

PatchNamespacedCustomObjectScaleWithHttpMessagesAsync(object, string, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update scale of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> PatchNamespacedCustomObjectScaleWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

PatchNamespacedCustomObjectScaleWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update scale of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> PatchNamespacedCustomObjectScaleWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

PatchNamespacedCustomObjectStatusWithHttpMessagesAsync(object, string, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update status of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> PatchNamespacedCustomObjectStatusWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

PatchNamespacedCustomObjectStatusWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

partially update status of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> PatchNamespacedCustomObjectStatusWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

PatchNamespacedCustomObjectWithHttpMessagesAsync(object, string, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

patch the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> PatchNamespacedCustomObjectWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to patch.

string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

PatchNamespacedCustomObjectWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, string, bool?, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

patch the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> PatchNamespacedCustomObjectWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, bool? force = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to patch.

string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

bool? force

Force is going to "force" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ReplaceClusterCustomObjectScaleWithHttpMessagesAsync(object, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace scale of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> ReplaceClusterCustomObjectScaleWithHttpMessagesAsync(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ReplaceClusterCustomObjectScaleWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace scale of the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> ReplaceClusterCustomObjectScaleWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ReplaceClusterCustomObjectStatusWithHttpMessagesAsync(object, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace status of the cluster scoped specified custom object

Declaration
Task<HttpOperationResponse<object>> ReplaceClusterCustomObjectStatusWithHttpMessagesAsync(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ReplaceClusterCustomObjectStatusWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace status of the cluster scoped specified custom object

Declaration
Task<HttpOperationResponse<T>> ReplaceClusterCustomObjectStatusWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ReplaceClusterCustomObjectWithHttpMessagesAsync(object, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<object>> ReplaceClusterCustomObjectWithHttpMessagesAsync(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to replace.

string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ReplaceClusterCustomObjectWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace the specified cluster scoped custom object

Declaration
Task<HttpOperationResponse<T>> ReplaceClusterCustomObjectWithHttpMessagesAsync<T>(object body, string group, string version, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to replace.

string group

the custom resource's group

string version

the custom resource's version

string plural

the custom object's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ReplaceNamespacedCustomObjectScaleWithHttpMessagesAsync(object, string, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace scale of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> ReplaceNamespacedCustomObjectScaleWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ReplaceNamespacedCustomObjectScaleWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace scale of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> ReplaceNamespacedCustomObjectScaleWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ReplaceNamespacedCustomObjectStatusWithHttpMessagesAsync(object, string, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace status of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> ReplaceNamespacedCustomObjectStatusWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ReplaceNamespacedCustomObjectStatusWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace status of the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> ReplaceNamespacedCustomObjectStatusWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body
string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T
View Source

ReplaceNamespacedCustomObjectWithHttpMessagesAsync(object, string, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<object>> ReplaceNamespacedCustomObjectWithHttpMessagesAsync(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to replace.

string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<object>>
View Source

ReplaceNamespacedCustomObjectWithHttpMessagesAsync<T>(object, string, string, string, string, string, string, string, string, IReadOnlyDictionary<string, IReadOnlyList<string>>, CancellationToken)

replace the specified namespace scoped custom object

Declaration
Task<HttpOperationResponse<T>> ReplaceNamespacedCustomObjectWithHttpMessagesAsync<T>(object body, string group, string version, string namespaceParameter, string plural, string name, string dryRun = null, string fieldManager = null, string fieldValidation = null, IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
object body

The JSON schema of the Resource to replace.

string group

the custom resource's group

string version

the custom resource's version

string namespaceParameter

The custom resource's namespace

string plural

the custom resource's plural name. For TPRs this would be lowercase plural kind.

string name

the custom object's name

string dryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

string fieldManager

fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.

string fieldValidation

fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. (optional)

IReadOnlyDictionary<string, IReadOnlyList<string>> customHeaders

The headers that will be added to request.

CancellationToken cancellationToken

A CancellationToken which can be used to cancel the asynchronous operation.

Returns
Type Description
Task<HttpOperationResponse<T>>
Type Parameters
Name Description
T

Extension Methods

CustomObjectsOperationsExtensions.CreateClusterCustomObject(ICustomObjectsOperations, object, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.CreateClusterCustomObjectAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.CreateClusterCustomObjectAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.CreateClusterCustomObject<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.CreateNamespacedCustomObject(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.CreateNamespacedCustomObjectAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.CreateNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.CreateNamespacedCustomObject<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.DeleteClusterCustomObject(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, int?, bool?, string, string)
CustomObjectsOperationsExtensions.DeleteClusterCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, int?, bool?, string, string, CancellationToken)
CustomObjectsOperationsExtensions.DeleteClusterCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, int?, bool?, string, string, CancellationToken)
CustomObjectsOperationsExtensions.DeleteClusterCustomObject<T>(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, int?, bool?, string, string)
CustomObjectsOperationsExtensions.DeleteCollectionClusterCustomObject(ICustomObjectsOperations, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, bool?)
CustomObjectsOperationsExtensions.DeleteCollectionClusterCustomObjectAsync(ICustomObjectsOperations, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.DeleteCollectionClusterCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.DeleteCollectionClusterCustomObject<T>(ICustomObjectsOperations, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, bool?)
CustomObjectsOperationsExtensions.DeleteCollectionNamespacedCustomObject(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, string, bool?)
CustomObjectsOperationsExtensions.DeleteCollectionNamespacedCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.DeleteCollectionNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.DeleteCollectionNamespacedCustomObject<T>(ICustomObjectsOperations, string, string, string, string, V1DeleteOptions, string, int?, bool?, string, string, string, bool?)
CustomObjectsOperationsExtensions.DeleteNamespacedCustomObject(ICustomObjectsOperations, string, string, string, string, string, V1DeleteOptions, int?, bool?, string, string)
CustomObjectsOperationsExtensions.DeleteNamespacedCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, string, V1DeleteOptions, int?, bool?, string, string, CancellationToken)
CustomObjectsOperationsExtensions.DeleteNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, string, string, V1DeleteOptions, int?, bool?, string, string, CancellationToken)
CustomObjectsOperationsExtensions.DeleteNamespacedCustomObject<T>(ICustomObjectsOperations, string, string, string, string, string, V1DeleteOptions, int?, bool?, string, string)
CustomObjectsOperationsExtensions.GetAPIResources(ICustomObjectsOperations, string, string)
CustomObjectsOperationsExtensions.GetAPIResourcesAsync(ICustomObjectsOperations, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObject(ICustomObjectsOperations, string, string, string, string)
CustomObjectsOperationsExtensions.GetClusterCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObjectScale(ICustomObjectsOperations, string, string, string, string)
CustomObjectsOperationsExtensions.GetClusterCustomObjectScaleAsync(ICustomObjectsOperations, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObjectScaleAsync<T>(ICustomObjectsOperations, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObjectScale<T>(ICustomObjectsOperations, string, string, string, string)
CustomObjectsOperationsExtensions.GetClusterCustomObjectStatus(ICustomObjectsOperations, string, string, string, string)
CustomObjectsOperationsExtensions.GetClusterCustomObjectStatusAsync(ICustomObjectsOperations, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObjectStatusAsync<T>(ICustomObjectsOperations, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetClusterCustomObjectStatus<T>(ICustomObjectsOperations, string, string, string, string)
CustomObjectsOperationsExtensions.GetClusterCustomObject<T>(ICustomObjectsOperations, string, string, string, string)
CustomObjectsOperationsExtensions.GetNamespacedCustomObject(ICustomObjectsOperations, string, string, string, string, string)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectScale(ICustomObjectsOperations, string, string, string, string, string)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectScaleAsync(ICustomObjectsOperations, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectScaleAsync<T>(ICustomObjectsOperations, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectScale<T>(ICustomObjectsOperations, string, string, string, string, string)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectStatus(ICustomObjectsOperations, string, string, string, string, string)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectStatusAsync(ICustomObjectsOperations, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectStatusAsync<T>(ICustomObjectsOperations, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.GetNamespacedCustomObjectStatus<T>(ICustomObjectsOperations, string, string, string, string, string)
CustomObjectsOperationsExtensions.GetNamespacedCustomObject<T>(ICustomObjectsOperations, string, string, string, string, string)
CustomObjectsOperationsExtensions.ListClusterCustomObject(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?)
CustomObjectsOperationsExtensions.ListClusterCustomObjectAsync(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, CancellationToken)
CustomObjectsOperationsExtensions.ListClusterCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, CancellationToken)
CustomObjectsOperationsExtensions.ListClusterCustomObject<T>(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?)
CustomObjectsOperationsExtensions.ListCustomObjectForAllNamespaces(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?)
CustomObjectsOperationsExtensions.ListCustomObjectForAllNamespacesAsync(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, CancellationToken)
CustomObjectsOperationsExtensions.ListCustomObjectForAllNamespacesAsync<T>(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, CancellationToken)
CustomObjectsOperationsExtensions.ListCustomObjectForAllNamespaces<T>(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?)
CustomObjectsOperationsExtensions.ListNamespacedCustomObject(ICustomObjectsOperations, string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?)
CustomObjectsOperationsExtensions.ListNamespacedCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, CancellationToken)
CustomObjectsOperationsExtensions.ListNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, CancellationToken)
CustomObjectsOperationsExtensions.ListNamespacedCustomObject<T>(ICustomObjectsOperations, string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?)
CustomObjectsOperationsExtensions.PatchClusterCustomObject(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectScale(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectScaleAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectScaleAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectScale<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectStatus(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectStatusAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectStatusAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchClusterCustomObjectStatus<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchClusterCustomObject<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObject(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectScale(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectScaleAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectScaleAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectScale<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectStatus(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectStatusAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectStatusAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?, CancellationToken)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObjectStatus<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.PatchNamespacedCustomObject<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, bool?)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObject(ICustomObjectsOperations, object, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectScale(ICustomObjectsOperations, object, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectScaleAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectScaleAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectScale<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectStatus(ICustomObjectsOperations, object, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectStatusAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectStatusAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObjectStatus<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceClusterCustomObject<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObject(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectScale(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectScaleAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectScaleAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectScale<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectStatus(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectStatusAsync(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectStatusAsync<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string, CancellationToken)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObjectStatus<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.ReplaceNamespacedCustomObject<T>(ICustomObjectsOperations, object, string, string, string, string, string, string, string, string)
CustomObjectsOperationsExtensions.WatchListClusterCustomObject(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, Action<WatchEventType, object>, Action<Exception>, Action)
CustomObjectsOperationsExtensions.WatchListClusterCustomObjectAsync(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, Action<Exception>, CancellationToken)
CustomObjectsOperationsExtensions.WatchListCustomObjectForAllNamespaces(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, Action<WatchEventType, object>, Action<Exception>, Action)
CustomObjectsOperationsExtensions.WatchListCustomObjectForAllNamespacesAsync(ICustomObjectsOperations, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, Action<Exception>, CancellationToken)
CustomObjectsOperationsExtensions.WatchListNamespacedCustomObject(ICustomObjectsOperations, string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, Action<WatchEventType, object>, Action<Exception>, Action)
CustomObjectsOperationsExtensions.WatchListNamespacedCustomObjectAsync(ICustomObjectsOperations, string, string, string, string, bool?, string, string, string, int?, string, string, int?, bool?, Action<Exception>, CancellationToken)
  • View Source
In this article
Back to top Generated by DocFX