kubernetes-client-core-0.3.1.0: Auto-generated kubernetes-client-core API Client
Safe HaskellNone
LanguageHaskell2010

Kubernetes.OpenAPI.API.CustomObjects

Description

 
Synopsis

Operations

CustomObjects

createClusterCustomObject

createClusterCustomObject Source #

Arguments

:: (Consumes CreateClusterCustomObject contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Body

"body" - The JSON schema of the Resource to create.

-> Group

"group" - The custom resource's group name

-> Version

"version" - The custom resource's version

-> Plural

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

-> KubernetesRequest CreateClusterCustomObject contentType Value MimeJSON 
POST /apis/{group}/{version}/{plural}

Creates a cluster scoped Custom object

AuthMethod: AuthApiKeyBearerToken

data CreateClusterCustomObject Source #

Instances

Instances details
Produces CreateClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes CreateClusterCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam CreateClusterCustomObject Pretty Source #

Optional Param "pretty" - If true, then the output is pretty printed.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam CreateClusterCustomObject FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam CreateClusterCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam CreateClusterCustomObject Body Source #

Body Param "body" - The JSON schema of the Resource to create.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Methods

setBodyParam :: (Consumes CreateClusterCustomObject contentType, MimeRender contentType Body) => KubernetesRequest CreateClusterCustomObject contentType res accept -> Body -> KubernetesRequest CreateClusterCustomObject contentType res accept Source #

createNamespacedCustomObject

createNamespacedCustomObject Source #

Arguments

:: (Consumes CreateNamespacedCustomObject contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Body

"body" - The JSON schema of the Resource to create.

-> Group

"group" - The custom resource's group name

-> Version

"version" - The custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> KubernetesRequest CreateNamespacedCustomObject contentType Value MimeJSON 
POST /apis/{group}/{version}/namespaces/{namespace}/{plural}

Creates a namespace scoped Custom object

AuthMethod: AuthApiKeyBearerToken

data CreateNamespacedCustomObject Source #

Instances

Instances details
Produces CreateNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes CreateNamespacedCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam CreateNamespacedCustomObject Pretty Source #

Optional Param "pretty" - If true, then the output is pretty printed.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam CreateNamespacedCustomObject FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam CreateNamespacedCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam CreateNamespacedCustomObject Body Source #

Body Param "body" - The JSON schema of the Resource to create.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

deleteClusterCustomObject

deleteClusterCustomObject Source #

Arguments

:: Consumes DeleteClusterCustomObject contentType 
=> ContentType contentType

request content-type (MimeType)

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest DeleteClusterCustomObject contentType Value MimeJSON 
DELETE /apis/{group}/{version}/{plural}/{name}

Deletes the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data DeleteClusterCustomObject Source #

Instances

Instances details
Produces DeleteClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes DeleteClusterCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteClusterCustomObject PropagationPolicy Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteClusterCustomObject OrphanDependents Source #

Optional Param "orphanDependents" - Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If truefalse, the "orphan" finalizer will be added toremoved from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteClusterCustomObject GracePeriodSeconds Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteClusterCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam DeleteClusterCustomObject V1DeleteOptions Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

deleteCollectionClusterCustomObject

deleteCollectionClusterCustomObject Source #

Arguments

:: Consumes DeleteCollectionClusterCustomObject contentType 
=> ContentType contentType

request content-type (MimeType)

-> Group

"group" - The custom resource's group name

-> Version

"version" - The custom resource's version

-> Plural

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

-> KubernetesRequest DeleteCollectionClusterCustomObject contentType Value MimeJSON 
DELETE /apis/{group}/{version}/{plural}

Delete collection of cluster scoped custom objects

AuthMethod: AuthApiKeyBearerToken

data DeleteCollectionClusterCustomObject Source #

Instances

Instances details
Produces DeleteCollectionClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes DeleteCollectionClusterCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionClusterCustomObject PropagationPolicy Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionClusterCustomObject Pretty Source #

Optional Param "pretty" - If true, then the output is pretty printed.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionClusterCustomObject OrphanDependents Source #

Optional Param "orphanDependents" - Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If truefalse, the "orphan" finalizer will be added toremoved from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionClusterCustomObject GracePeriodSeconds Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionClusterCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam DeleteCollectionClusterCustomObject V1DeleteOptions Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

deleteCollectionNamespacedCustomObject

deleteCollectionNamespacedCustomObject Source #

Arguments

:: Consumes DeleteCollectionNamespacedCustomObject contentType 
=> ContentType contentType

request content-type (MimeType)

-> Group

"group" - The custom resource's group name

-> Version

"version" - The custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> KubernetesRequest DeleteCollectionNamespacedCustomObject contentType Value MimeJSON 
DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}

Delete collection of namespace scoped custom objects

AuthMethod: AuthApiKeyBearerToken

data DeleteCollectionNamespacedCustomObject Source #

Instances

Instances details
Produces DeleteCollectionNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes DeleteCollectionNamespacedCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionNamespacedCustomObject PropagationPolicy Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionNamespacedCustomObject Pretty Source #

Optional Param "pretty" - If true, then the output is pretty printed.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionNamespacedCustomObject OrphanDependents Source #

Optional Param "orphanDependents" - Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If truefalse, the "orphan" finalizer will be added toremoved from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionNamespacedCustomObject GracePeriodSeconds Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteCollectionNamespacedCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam DeleteCollectionNamespacedCustomObject V1DeleteOptions Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

deleteNamespacedCustomObject

deleteNamespacedCustomObject Source #

Arguments

:: Consumes DeleteNamespacedCustomObject contentType 
=> ContentType contentType

request content-type (MimeType)

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest DeleteNamespacedCustomObject contentType Value MimeJSON 
DELETE /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}

Deletes the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data DeleteNamespacedCustomObject Source #

Instances

Instances details
Produces DeleteNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes DeleteNamespacedCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteNamespacedCustomObject PropagationPolicy Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteNamespacedCustomObject OrphanDependents Source #

Optional Param "orphanDependents" - Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If truefalse, the "orphan" finalizer will be added toremoved from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteNamespacedCustomObject GracePeriodSeconds Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam DeleteNamespacedCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam DeleteNamespacedCustomObject V1DeleteOptions Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

getClusterCustomObject

getClusterCustomObject Source #

Arguments

:: Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest GetClusterCustomObject MimeNoContent Value MimeJSON 
GET /apis/{group}/{version}/{plural}/{name}

Returns a cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data GetClusterCustomObject Source #

Instances

Instances details
Produces GetClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

getClusterCustomObjectScale

getClusterCustomObjectScale Source #

Arguments

:: Accept accept

request accept (MimeType)

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest GetClusterCustomObjectScale MimeNoContent Value accept 
GET /apis/{group}/{version}/{plural}/{name}/scale

read scale of the specified custom object

AuthMethod: AuthApiKeyBearerToken

getClusterCustomObjectStatus

getClusterCustomObjectStatus Source #

Arguments

:: Accept accept

request accept (MimeType)

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest GetClusterCustomObjectStatus MimeNoContent Value accept 
GET /apis/{group}/{version}/{plural}/{name}/status

read status of the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

getNamespacedCustomObject

getNamespacedCustomObject Source #

Arguments

:: Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest GetNamespacedCustomObject MimeNoContent Value MimeJSON 
GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}

Returns a namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data GetNamespacedCustomObject Source #

Instances

Instances details
Produces GetNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

getNamespacedCustomObjectScale

getNamespacedCustomObjectScale Source #

Arguments

:: Accept accept

request accept (MimeType)

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest GetNamespacedCustomObjectScale MimeNoContent Value accept 
GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale

read scale of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

getNamespacedCustomObjectStatus

getNamespacedCustomObjectStatus Source #

Arguments

:: Accept accept

request accept (MimeType)

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest GetNamespacedCustomObjectStatus MimeNoContent Value accept 
GET /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status

read status of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

listClusterCustomObject

listClusterCustomObject Source #

Arguments

:: Accept accept

request accept (MimeType)

-> Group

"group" - The custom resource's group name

-> Version

"version" - The custom resource's version

-> Plural

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

-> KubernetesRequest ListClusterCustomObject MimeNoContent Value accept 
GET /apis/{group}/{version}/{plural}

list or watch cluster scoped custom objects

AuthMethod: AuthApiKeyBearerToken

data ListClusterCustomObject Source #

Instances

Instances details
Produces ListClusterCustomObject MimeJsonstreamwatch Source #
application/json;stream=watch
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ListClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject Watch Source #

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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject TimeoutSeconds Source #

Optional Param "timeoutSeconds" - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject ResourceVersion Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject Pretty Source #

Optional Param "pretty" - If true, then the output is pretty printed.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject Limit Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject LabelSelector Source #

Optional Param "labelSelector" - A selector to restrict the list of returned objects by their labels. Defaults to everything.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject FieldSelector Source #

Optional Param "fieldSelector" - A selector to restrict the list of returned objects by their fields. Defaults to everything.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListClusterCustomObject Continue Source #

Optional Param "continue" - 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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

listNamespacedCustomObject

listNamespacedCustomObject Source #

Arguments

:: Accept accept

request accept (MimeType)

-> Group

"group" - The custom resource's group name

-> Version

"version" - The custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> KubernetesRequest ListNamespacedCustomObject MimeNoContent Value accept 
GET /apis/{group}/{version}/namespaces/{namespace}/{plural}

list or watch namespace scoped custom objects

AuthMethod: AuthApiKeyBearerToken

data ListNamespacedCustomObject Source #

Instances

Instances details
Produces ListNamespacedCustomObject MimeJsonstreamwatch Source #
application/json;stream=watch
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ListNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject Watch Source #

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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject TimeoutSeconds Source #

Optional Param "timeoutSeconds" - Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject ResourceVersion Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject Pretty Source #

Optional Param "pretty" - If true, then the output is pretty printed.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject Limit Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject LabelSelector Source #

Optional Param "labelSelector" - A selector to restrict the list of returned objects by their labels. Defaults to everything.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject FieldSelector Source #

Optional Param "fieldSelector" - A selector to restrict the list of returned objects by their fields. Defaults to everything.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ListNamespacedCustomObject Continue Source #

Optional Param "continue" - 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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

patchClusterCustomObject

patchClusterCustomObject Source #

Arguments

:: (Consumes PatchClusterCustomObject contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Body

"body" - The JSON schema of the Resource to patch.

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest PatchClusterCustomObject contentType Value MimeJSON 
PATCH /apis/{group}/{version}/{plural}/{name}

patch the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchClusterCustomObject Source #

Instances

Instances details
Produces PatchClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchClusterCustomObject MimeMergePatchjson Source #
application/merge-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchClusterCustomObject MimeJsonPatchjson Source #
application/json-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObject Force Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObject FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam PatchClusterCustomObject Body Source #

Body Param "body" - The JSON schema of the Resource to patch.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Methods

setBodyParam :: (Consumes PatchClusterCustomObject contentType, MimeRender contentType Body) => KubernetesRequest PatchClusterCustomObject contentType res accept -> Body -> KubernetesRequest PatchClusterCustomObject contentType res accept Source #

patchClusterCustomObjectScale

patchClusterCustomObjectScale Source #

Arguments

:: (Consumes PatchClusterCustomObjectScale contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest PatchClusterCustomObjectScale contentType Value accept 
PATCH /apis/{group}/{version}/{plural}/{name}/scale

partially update scale of the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchClusterCustomObjectScale Source #

Instances

Instances details
Produces PatchClusterCustomObjectScale MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchClusterCustomObjectScale MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchClusterCustomObjectScale MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchClusterCustomObjectScale MimeMergePatchjson Source #
application/merge-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchClusterCustomObjectScale MimeJsonPatchjson Source #
application/json-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObjectScale Force Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObjectScale FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObjectScale DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam PatchClusterCustomObjectScale Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

patchClusterCustomObjectStatus

patchClusterCustomObjectStatus Source #

Arguments

:: (Consumes PatchClusterCustomObjectStatus contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest PatchClusterCustomObjectStatus contentType Value accept 
PATCH /apis/{group}/{version}/{plural}/{name}/status

partially update status of the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchClusterCustomObjectStatus Source #

Instances

Instances details
Produces PatchClusterCustomObjectStatus MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchClusterCustomObjectStatus MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchClusterCustomObjectStatus MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchClusterCustomObjectStatus MimeMergePatchjson Source #
application/merge-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchClusterCustomObjectStatus MimeJsonPatchjson Source #
application/json-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObjectStatus Force Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObjectStatus FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchClusterCustomObjectStatus DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam PatchClusterCustomObjectStatus Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

patchNamespacedCustomObject

patchNamespacedCustomObject Source #

Arguments

:: (Consumes PatchNamespacedCustomObject contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Body

"body" - The JSON schema of the Resource to patch.

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest PatchNamespacedCustomObject contentType Value MimeJSON 
PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}

patch the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchNamespacedCustomObject Source #

Instances

Instances details
Produces PatchNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObject MimeMergePatchjson Source #
application/merge-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObject MimeJsonPatchjson Source #
application/json-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObject Force Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObject FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam PatchNamespacedCustomObject Body Source #

Body Param "body" - The JSON schema of the Resource to patch.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

patchNamespacedCustomObjectScale

patchNamespacedCustomObjectScale Source #

Arguments

:: (Consumes PatchNamespacedCustomObjectScale contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest PatchNamespacedCustomObjectScale contentType Value accept 
PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale

partially update scale of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchNamespacedCustomObjectScale Source #

Instances

Instances details
Produces PatchNamespacedCustomObjectScale MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchNamespacedCustomObjectScale MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchNamespacedCustomObjectScale MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObjectScale MimeMergePatchjson Source #
application/merge-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObjectScale MimeJsonPatchjson Source #
application/json-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObjectScale MimeApplyPatchyaml Source #
application/apply-patch+yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObjectScale Force Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObjectScale FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObjectScale DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam PatchNamespacedCustomObjectScale Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

patchNamespacedCustomObjectStatus

patchNamespacedCustomObjectStatus Source #

Arguments

:: (Consumes PatchNamespacedCustomObjectStatus contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest PatchNamespacedCustomObjectStatus contentType Value accept 
PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status

partially update status of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchNamespacedCustomObjectStatus Source #

Instances

Instances details
Produces PatchNamespacedCustomObjectStatus MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchNamespacedCustomObjectStatus MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces PatchNamespacedCustomObjectStatus MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObjectStatus MimeMergePatchjson Source #
application/merge-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObjectStatus MimeJsonPatchjson Source #
application/json-patch+json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Consumes PatchNamespacedCustomObjectStatus MimeApplyPatchyaml Source #
application/apply-patch+yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObjectStatus Force Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObjectStatus FieldManager Source #

Optional Param "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).

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam PatchNamespacedCustomObjectStatus DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam PatchNamespacedCustomObjectStatus Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

replaceClusterCustomObject

replaceClusterCustomObject Source #

Arguments

:: (Consumes ReplaceClusterCustomObject contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Body

"body" - The JSON schema of the Resource to replace.

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest ReplaceClusterCustomObject contentType Value MimeJSON 
PUT /apis/{group}/{version}/{plural}/{name}

replace the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data ReplaceClusterCustomObject Source #

Instances

Instances details
Produces ReplaceClusterCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes ReplaceClusterCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceClusterCustomObject FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceClusterCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam ReplaceClusterCustomObject Body Source #

Body Param "body" - The JSON schema of the Resource to replace.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

replaceClusterCustomObjectScale

replaceClusterCustomObjectScale Source #

Arguments

:: (Consumes ReplaceClusterCustomObjectScale contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest ReplaceClusterCustomObjectScale contentType Value accept 
PUT /apis/{group}/{version}/{plural}/{name}/scale

replace scale of the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data ReplaceClusterCustomObjectScale Source #

Instances

Instances details
Produces ReplaceClusterCustomObjectScale MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceClusterCustomObjectScale MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceClusterCustomObjectScale MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes ReplaceClusterCustomObjectScale mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceClusterCustomObjectScale FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceClusterCustomObjectScale DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam ReplaceClusterCustomObjectScale Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

replaceClusterCustomObjectStatus

replaceClusterCustomObjectStatus Source #

Arguments

:: (Consumes ReplaceClusterCustomObjectStatus contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest ReplaceClusterCustomObjectStatus contentType Value accept 
PUT /apis/{group}/{version}/{plural}/{name}/status

replace status of the cluster scoped specified custom object

AuthMethod: AuthApiKeyBearerToken

data ReplaceClusterCustomObjectStatus Source #

Instances

Instances details
Produces ReplaceClusterCustomObjectStatus MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceClusterCustomObjectStatus MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceClusterCustomObjectStatus MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes ReplaceClusterCustomObjectStatus mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceClusterCustomObjectStatus FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceClusterCustomObjectStatus DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam ReplaceClusterCustomObjectStatus Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

replaceNamespacedCustomObject

replaceNamespacedCustomObject Source #

Arguments

:: (Consumes ReplaceNamespacedCustomObject contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Body

"body" - The JSON schema of the Resource to replace.

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest ReplaceNamespacedCustomObject contentType Value MimeJSON 
PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}

replace the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data ReplaceNamespacedCustomObject Source #

Instances

Instances details
Produces ReplaceNamespacedCustomObject MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes ReplaceNamespacedCustomObject mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceNamespacedCustomObject FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceNamespacedCustomObject DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam ReplaceNamespacedCustomObject Body Source #

Body Param "body" - The JSON schema of the Resource to replace.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

replaceNamespacedCustomObjectScale

replaceNamespacedCustomObjectScale Source #

Arguments

:: (Consumes ReplaceNamespacedCustomObjectScale contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest ReplaceNamespacedCustomObjectScale contentType Value accept 
PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale

replace scale of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data ReplaceNamespacedCustomObjectScale Source #

Instances

Instances details
Produces ReplaceNamespacedCustomObjectScale MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceNamespacedCustomObjectScale MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceNamespacedCustomObjectScale MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes ReplaceNamespacedCustomObjectScale mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceNamespacedCustomObjectScale FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceNamespacedCustomObjectScale DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam ReplaceNamespacedCustomObjectScale Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

replaceNamespacedCustomObjectStatus

replaceNamespacedCustomObjectStatus Source #

Arguments

:: (Consumes ReplaceNamespacedCustomObjectStatus contentType, MimeRender contentType Body) 
=> ContentType contentType

request content-type (MimeType)

-> Accept accept

request accept (MimeType)

-> Body

"body"

-> Group

"group" - the custom resource's group

-> Version

"version" - the custom resource's version

-> Namespace

"namespace" - The custom resource's namespace

-> Plural

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

-> Name

"name" - the custom object's name

-> KubernetesRequest ReplaceNamespacedCustomObjectStatus contentType Value accept 
PUT /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status

replace status of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data ReplaceNamespacedCustomObjectStatus Source #

Instances

Instances details
Produces ReplaceNamespacedCustomObjectStatus MimeYaml Source #
application/yaml
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceNamespacedCustomObjectStatus MimeVndKubernetesProtobuf Source #
application/vnd.kubernetes.protobuf
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

Produces ReplaceNamespacedCustomObjectStatus MimeJSON Source #
application/json
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

MimeType mtype => Consumes ReplaceNamespacedCustomObjectStatus mtype Source #
*/*
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceNamespacedCustomObjectStatus FieldManager Source #

Optional Param "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.

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasOptionalParam ReplaceNamespacedCustomObjectStatus DryRun Source #

Optional Param "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

Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

HasBodyParam ReplaceNamespacedCustomObjectStatus Body Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects