kubernetes-client-core-0.1.0.1: Auto-generated kubernetes-client-core API Client

Safe HaskellNone
LanguageHaskell2010

Kubernetes.OpenAPI.API.CustomObjects

Contents

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
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

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
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

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, MimeRender contentType V1DeleteOptions) 
=> ContentType contentType

request content-type (MimeType)

-> V1DeleteOptions

"body"

-> 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
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

HasBodyParam DeleteClusterCustomObject V1DeleteOptions Source # 
Instance details

Defined in Kubernetes.OpenAPI.API.CustomObjects

deleteNamespacedCustomObject

deleteNamespacedCustomObject Source #

Arguments

:: (Consumes DeleteNamespacedCustomObject contentType, MimeRender contentType V1DeleteOptions) 
=> ContentType contentType

request content-type (MimeType)

-> V1DeleteOptions

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

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

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

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
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 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

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
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 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

patchClusterCustomObject

patchClusterCustomObject Source #

Arguments

:: (Consumes PatchClusterCustomObject MimeMergePatchjson, MimeRender MimeMergePatchjson Body) 
=> 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 MimeMergePatchjson Value MimeJSON 
PATCH /apis/{group}/{version}/{plural}/{name}

patch the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchClusterCustomObject Source #

Instances
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

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 MimeMergePatchjson, MimeRender MimeMergePatchjson Body) 
=> 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 MimeMergePatchjson Value accept 
PATCH /apis/{group}/{version}/{plural}/{name}/scale

partially update scale of the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

patchClusterCustomObjectStatus

patchClusterCustomObjectStatus Source #

Arguments

:: (Consumes PatchClusterCustomObjectStatus MimeMergePatchjson, MimeRender MimeMergePatchjson Body) 
=> 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 MimeMergePatchjson Value accept 
PATCH /apis/{group}/{version}/{plural}/{name}/status

partially update status of the specified cluster scoped custom object

AuthMethod: AuthApiKeyBearerToken

patchNamespacedCustomObject

patchNamespacedCustomObject Source #

Arguments

:: (Consumes PatchNamespacedCustomObject MimeMergePatchjson, MimeRender MimeMergePatchjson Body) 
=> 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 MimeMergePatchjson Value MimeJSON 
PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}

patch the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

data PatchNamespacedCustomObject Source #

Instances
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

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 MimeMergePatchjson, MimeRender MimeMergePatchjson Body) 
=> 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 MimeMergePatchjson Value accept 
PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale

partially update scale of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

patchNamespacedCustomObjectStatus

patchNamespacedCustomObjectStatus Source #

Arguments

:: (Consumes PatchNamespacedCustomObjectStatus MimeMergePatchjson, MimeRender MimeMergePatchjson Body) 
=> 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 MimeMergePatchjson Value accept 
PATCH /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status

partially update status of the specified namespace scoped custom object

AuthMethod: AuthApiKeyBearerToken

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
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

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

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

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
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

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

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