Nine Self Service API (v1alpha1)
Download OpenAPI specification:Download
The Nine Self Service API allows you to provision various services using a HTTP REST API. The API is based on Kubernetes, meaning existing tooling can be used to interact with it.
The API uses bearer tokens for authentication. You can get a token by creating an API Service Account using nctl:
nctl auth login <account name>
nctl create asa cicd
nctl get asa cicd --print-token
The token has to be sent with each request using the Authorization: Bearer <token>
HTTP header.
All the resources you can create reside in a namespace allocated for your Cockpit account. This means with all requests you will have to specify the namespace of the resource you are interacting with. The namespace equals to the account name that is displayed under Recently Used in Cockpit. The service account you previously created just has access to resources in the same namespace it resides in.
To verify that the token works as expected, you can try to issue the following
request using curl
. If you get the following reply, the authentication
works:
$ curl https://nineapis.ch/api/ -H "Authorization: Bearer <token>"
{
"kind": "APIVersions",
"versions": [
"v1"
],
...
}
Now that we are authenticated with the API, let's create a first resource with it. Note that a lot of resources that can be created on the API incur costs, so be careful when testing your integration. Here we create an object storage bucket, which by itself is free as long as no data is uploaded to it.
$ curl -X POST https://nineapis.ch/apis/storage.nine.ch/v1alpha1/namespaces/<your namespace>/buckets \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
--request POST \
--data '{
"kind": "Bucket",
"apiVersion": "storage.nine.ch/v1alpha1",
"metadata": {
"name": "hello-api"
},
"spec": {
"forProvider": {
"encryption": true,
"location": "nine-es34"
}
}
}'
Besides using any HTTP client, the API can also be interacted with using the
command line tool
kubectl
. After
authenticating with nctl
you can simply access resources by their name.
$ kubectl get buckets.storage.nine.ch
NAME SYNCED READY AGE
hello-api True True 10m
After you create a resource using the API, how do you know it is ready? This
is where the status.conditions
field comes in. It represents the current
state of that resource. For example, when getting the status of a Bucket
it
might look something like this:
"status": {
"conditions": [
{
"lastTransitionTime": "2023-03-05T08:25:41Z",
"reason": "ReconcileSuccess",
"status": "True",
"type": "Synced"
},
{
"lastTransitionTime": "2023-03-05T08:25:41Z",
"reason": "Available",
"status": "True",
"type": "Ready"
}
]
}
For knowing whether a resource is ready to use, the relevant condition is the
one with type: Ready
. This one indicates whether the backend resource is
ready. The other important field within the condition is the reason
. The
following
reasons
exist:
- Available: The resource is available for use.
- Unavailable: The resource is currently unhealthy, making it temporarily unavailable.
- Creating: The resource is currently being created.
- Deleting The resource is currently being deleted.
For catching errors during the creation process, one should look for the type: Synced
.
There is a reason
field, same as with the ready status. Here we simply have
these reasons:
- ReconcileSuccess: The resource has at successfully reconciled at least once. Note that this does not mean it is ready to use.
- ReconcileError: The resource experienced an error during reconciliation. In
this case, have a look at the
message
field to tell you more about why it errored.
For resources which need credentials to access them after creation, there is a
system in place to automatically write those credentials to a normal Kubernetes
secret. For example, when creating a BucketUser
it generates an S3 access key
and secret which can then be used to authenticate against the object storage. As
a user you can simply tell the BucketUser
where to write those credentials by
using the spec.writeConnectionSecretToRef
field.
"spec": {
"writeConnectionSecretToRef": {
"name": "some-secret",
"namespace": "<your namespace>"
}
}
In this case, the credentials would end up in the secret a-secret
within your
organizations namespace.
The deletion protection feature helps prevent accidental deletion of the API resources listed in this documentation. This is an additional security measure intended to protect production applications and related data.
To prevent a resource from being deleted, you can add the
nine.ch/deletion-protection: "true"
annotation. As long as this annotation exists,
the resource can not be deleted. Please make sure you use "true"
to activate
this feature. For example, to protect your projects.management.nine.ch
named foo
,
you can use the following command:
kubectl annotate projects.management.nine.ch foo nine.ch/deletion-protection=true
To test if the annotation prevents an accidental deletion you can use the
--dry-run=server
option of kubectl
:
kubectl delete --dry-run=server projects.management.nine.ch foo
Error from server (Forbidden): admission webhook
"deletion-protection.nine-controllers.nine.ch" denied the request: preventing
deletion because of nine.ch/deletion-protection annotation
To disable the deletion protection, you can either remove the annotation
completely or use the value "false"
:
kubectl annotate --overwrite projects.management.nine.ch foo nine.ch/deletion-protection=false
An additional deletion test should confirm feature deactivation:
kubectl delete --dry-run=server projects.management.nine.ch foo
project.management.nine.ch "nine-staging-foo" deleted (server dry run)
Please note that using a value other than "true"
or "false"
will result in
an error when modifying the resource.
list objects of kind Application
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create an Application
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An ApplicationSpec defines the desired state of an Application. |
object An ApplicationStatus represents the observed state of an Application. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of Application
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Application
Authorizations:
path Parameters
name required | string unique name of the Application |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified Application
Authorizations:
path Parameters
name required | string unique name of the Application |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An ApplicationSpec defines the desired state of an Application. |
object An ApplicationStatus represents the observed state of an Application. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete an Application
Authorizations:
path Parameters
name required | string unique name of the Application |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Application
Authorizations:
path Parameters
name required | string unique name of the Application |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildEnv": [
- {
- "name": "string",
- "value": "string"
}
], - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "dockerfileBuild": {
- "buildContext": "string",
- "dockerfilePath": "string",
- "enabled": true
}, - "git": {
- "auth": {
- "fromSecret": {
- "name": "string"
}, - "password": "string",
- "sshPrivateKey": "string",
- "username": "string"
}, - "revision": "string",
- "subPath": "string",
- "url": "string"
}, - "hosts": [
- "string"
], - "language": ""
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "cnameTarget": "string",
- "customHostsCertificateStatus": "string",
- "defaultHostsCertificateStatus": "string",
- "defaultURLs": [
- "string"
], - "hosts": [
- {
- "checkType": "string",
- "error": {
- "message": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}, - "latestSuccess": "2019-08-24T14:15:22Z",
- "name": "string"
}
], - "latestBuild": "string",
- "latestRelease": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "replicas": 0,
- "size": "",
- "txtRecordContent": "string",
- "workerJobs": [
- {
- "name": "string",
- "size": ""
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind Build
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Build
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BuildSpec defines the desired state of an Build. |
object An BuildStatus represents the observed state of an Build. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of Build
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Build
Authorizations:
path Parameters
name required | string unique name of the Build |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified Build
Authorizations:
path Parameters
name required | string unique name of the Build |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BuildSpec defines the desired state of an Build. |
object An BuildStatus represents the observed state of an Build. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a Build
Authorizations:
path Parameters
name required | string unique name of the Build |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Build
Authorizations:
path Parameters
name required | string unique name of the Build |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "buildReference": {
- "build": {
- "name": "string",
- "namespace": "string"
}, - "cluster": {
- "name": "string",
- "namespace": "string"
}
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "env": [
- {
- "name": "string",
- "value": "string"
}
], - "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "sourceConfig": {
- "git": {
- "revision": "string",
- "subPath": "string",
- "url": "string"
}
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "buildMetadata": [
- {
- "homepage": "string",
- "id": "string",
- "version": "string"
}
], - "buildStatus": "string",
- "stack": "string",
- "stepsCompleted": [
- "string"
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind ProjectConfig
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a ProjectConfig
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An ProjectConfigSpec defines the desired state of a ProjectConfig. |
object An ProjectConfigStatus represents the observed state of a ProjectConfig. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of ProjectConfig
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified ProjectConfig
Authorizations:
path Parameters
name required | string unique name of the ProjectConfig |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified ProjectConfig
Authorizations:
path Parameters
name required | string unique name of the ProjectConfig |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An ProjectConfigSpec defines the desired state of a ProjectConfig. |
object An ProjectConfigStatus represents the observed state of a ProjectConfig. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a ProjectConfig
Authorizations:
path Parameters
name required | string unique name of the ProjectConfig |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified ProjectConfig
Authorizations:
path Parameters
name required | string unique name of the ProjectConfig |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
A Release is created from a "successful" Build. It contains all the information needed to deploy the application.
list objects of kind Release
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Release
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
creationTimestampNano required | integer <int64> CreationTimestampNano is the unix nano timestamp of the release when it was created. It can be used to order releases and find the most current one. It provides a higher accuracy than the normal kubernetes resource CreationTimestamp which only has a resolution down to a second. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A ReleaseSpec defines the desired Release state |
object An ReleaseStatus represents the observed Release state |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of Release
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Release
Authorizations:
path Parameters
name required | string unique name of the Release |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified Release
Authorizations:
path Parameters
name required | string unique name of the Release |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
creationTimestampNano required | integer <int64> CreationTimestampNano is the unix nano timestamp of the release when it was created. It can be used to order releases and find the most current one. It provides a higher accuracy than the normal kubernetes resource CreationTimestamp which only has a resolution down to a second. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A ReleaseSpec defines the desired Release state |
object An ReleaseStatus represents the observed Release state |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a Release
Authorizations:
path Parameters
name required | string unique name of the Release |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Release
Authorizations:
path Parameters
name required | string unique name of the Release |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "creationTimestampNano": 0,
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "basicAuthSecret": {
- "name": "string"
}, - "build": {
- "name": "string"
}, - "config": {
- "deployJob": { },
- "enableBasicAuth": null,
- "env": [
- {
- "name": "string",
- "value": "string"
}
], - "port": null,
- "replicas": null,
- "size": "",
- "workerJobs": null
}, - "configuration": {
- "deployJob": {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "retries": 0,
- "timeout": "string"
}
}, - "enableBasicAuth": {
- "origin": "string",
- "value": true
}, - "env": [
- {
- "origin": "string",
- "value": {
- "name": "string",
- "value": "string"
}
}
], - "port": {
- "origin": "string",
- "value": 0
}, - "replicas": {
- "origin": "string",
- "value": 0
}, - "size": {
- "origin": "string",
- "value": ""
}, - "workerJobs": [
- {
- "origin": "string",
- "value": {
- "command": "string",
- "name": "string",
- "size": ""
}
}
]
}, - "defaultHosts": [
- "string"
], - "dockerfileBuild": true,
- "image": {
- "digest": "string",
- "pullPolicy": "string",
- "pullSecret": "string",
- "registry": "string",
- "repository": "string",
- "tag": "string"
}, - "runAsUser": 0,
- "timeout": "string",
- "verifiedHosts": [
- "string"
]
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "customHostsCertificateStatus": "string",
- "deployJobStatus": {
- "exitTime": "2019-08-24T14:15:22Z",
- "name": "string",
- "reason": "string",
- "startTime": "2019-08-24T14:15:22Z",
- "status": "string"
}, - "releaseStatus": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
], - "replicas": 0,
- "workerJobStatus": [
- {
- "name": "string",
- "replicaObservation": [
- {
- "lastExitCode": 0,
- "replicaName": "string",
- "restartCount": 0,
- "status": "string"
}
]
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind ArgoCD
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create an ArgoCD
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An ArgoCDSpec defines the desired state of a ArgoCD. |
object An ArgoCDStatus represents the observed state of a ArgoCD. |
Responses
Request samples
- Payload
{- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of ArgoCD
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified ArgoCD
Authorizations:
path Parameters
name required | string unique name of the ArgoCD |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified ArgoCD
Authorizations:
path Parameters
name required | string unique name of the ArgoCD |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An ArgoCDSpec defines the desired state of a ArgoCD. |
object An ArgoCDStatus represents the observed state of a ArgoCD. |
Responses
Request samples
- Payload
{- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
delete an ArgoCD
Authorizations:
path Parameters
name required | string unique name of the ArgoCD |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified ArgoCD
Authorizations:
path Parameters
name required | string unique name of the ArgoCD |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "ArgoCD",
- "apiVersion": "devtools.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "clusters": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "enableApplicationSets": false
}
}, - "status": {
- "atProvider": { }
}
}
list objects of kind APIServiceAccount
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create an APIServiceAccount
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object APIServiceAccountSpec defines the desired state of a APIServiceAccount. |
object APIServiceAccountStatus represents the observed state of a APIServiceAccount. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of APIServiceAccount
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified APIServiceAccount
Authorizations:
path Parameters
name required | string unique name of the APIServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified APIServiceAccount
Authorizations:
path Parameters
name required | string unique name of the APIServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object APIServiceAccountSpec defines the desired state of a APIServiceAccount. |
object APIServiceAccountStatus represents the observed state of a APIServiceAccount. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete an APIServiceAccount
Authorizations:
path Parameters
name required | string unique name of the APIServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified APIServiceAccount
Authorizations:
path Parameters
name required | string unique name of the APIServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "role": "admin"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
KubernetesClustersRoleBinding binds a role to subjects and KubernetesClusters.
list objects of kind KubernetesClustersRoleBinding
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a KubernetesClustersRoleBinding
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object KubernetesClustersRoleBindingSpec defines the desired state of a KubernetesClustersRoleBinding. |
object KubernetesClustersRoleBindingStatus represents the observed state of a KubernetesClustersRoleBinding. |
Responses
Request samples
- Payload
{- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of KubernetesClustersRoleBinding
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified KubernetesClustersRoleBinding
Authorizations:
path Parameters
name required | string unique name of the KubernetesClustersRoleBinding |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified KubernetesClustersRoleBinding
Authorizations:
path Parameters
name required | string unique name of the KubernetesClustersRoleBinding |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object KubernetesClustersRoleBindingSpec defines the desired state of a KubernetesClustersRoleBinding. |
object KubernetesClustersRoleBindingStatus represents the observed state of a KubernetesClustersRoleBinding. |
Responses
Request samples
- Payload
{- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
delete a KubernetesClustersRoleBinding
Authorizations:
path Parameters
name required | string unique name of the KubernetesClustersRoleBinding |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified KubernetesClustersRoleBinding
Authorizations:
path Parameters
name required | string unique name of the KubernetesClustersRoleBinding |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "KubernetesClustersRoleBinding",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "subjects": [
- {
- "kind": "ServiceAccount",
- "name": "example-resource"
}, - {
- "kind": "User",
- "name": "user@example.org"
}
], - "clusters": [
- {
- "name": "example-resource"
}
]
}
}, - "status": {
- "atProvider": { }
}
}
KubernetesServiceAccount is a service account to access a KubernetesCluster.
list objects of kind KubernetesServiceAccount
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a KubernetesServiceAccount
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object KubernetesServiceAccountSpec defines the desired state of a KubernetesServiceAccount. |
object KubernetesServiceAccountStatus represents the observed state of a KubernetesServiceAccount. |
Responses
Request samples
- Payload
{- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of KubernetesServiceAccount
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified KubernetesServiceAccount
Authorizations:
path Parameters
name required | string unique name of the KubernetesServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified KubernetesServiceAccount
Authorizations:
path Parameters
name required | string unique name of the KubernetesServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object KubernetesServiceAccountSpec defines the desired state of a KubernetesServiceAccount. |
object KubernetesServiceAccountStatus represents the observed state of a KubernetesServiceAccount. |
Responses
Request samples
- Payload
{- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
delete a KubernetesServiceAccount
Authorizations:
path Parameters
name required | string unique name of the KubernetesServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified KubernetesServiceAccount
Authorizations:
path Parameters
name required | string unique name of the KubernetesServiceAccount |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "KubernetesServiceAccount",
- "apiVersion": "iam.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
CloudVirtualMachine is a virtual machine instance providing flexible scaling and a variety of Linux distributions.
list objects of kind CloudVirtualMachine
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a CloudVirtualMachine
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object CloudVirtualMachineSpec defines the desired state of a cloud VM. |
object CloudVirtualMachineStatus represents the observed state of a cloud VM. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of CloudVirtualMachine
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified CloudVirtualMachine
Authorizations:
path Parameters
name required | string unique name of the CloudVirtualMachine |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified CloudVirtualMachine
Authorizations:
path Parameters
name required | string unique name of the CloudVirtualMachine |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object CloudVirtualMachineSpec defines the desired state of a cloud VM. |
object CloudVirtualMachineStatus represents the observed state of a cloud VM. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a CloudVirtualMachine
Authorizations:
path Parameters
name required | string unique name of the CloudVirtualMachine |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified CloudVirtualMachine
Authorizations:
path Parameters
name required | string unique name of the CloudVirtualMachine |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "bootDisk": {
- "name": "string",
- "size": "string"
}, - "cloudConfig": "string",
- "disks": [
- {
- "name": "string",
- "size": "string"
}
], - "hostname": "string",
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "os": "ubuntu20.04",
- "powerState": "on",
- "publicKeys": [
- "string"
], - "rescue": {
- "enabled": true,
- "publicKeys": [
- "string"
]
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "fqdn": "string",
- "ipAddress": "string",
- "powerState": "string",
- "uuid": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind Keda
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Keda
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A KedaSpec defines the desired state of a Keda instance. |
object A KedaStatus represents the observed state of a Keda instance. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of Keda
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Keda
Authorizations:
path Parameters
name required | string unique name of the Keda |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified Keda
Authorizations:
path Parameters
name required | string unique name of the Keda |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A KedaSpec defines the desired state of a Keda instance. |
object A KedaStatus represents the observed state of a Keda instance. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a Keda
Authorizations:
path Parameters
name required | string unique name of the Keda |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Keda
Authorizations:
path Parameters
name required | string unique name of the Keda |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind KubernetesCluster
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a KubernetesCluster
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A KubernetesClusterSpec defines the desired state of a KubernetesCluster. |
object A KubernetesClusterStatus represents the observed state of a KubernetesCluster. |
Responses
Request samples
- Payload
{- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
Response samples
- 200
- 201
- 202
{- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
delete collection of KubernetesCluster
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified KubernetesCluster
Authorizations:
path Parameters
name required | string unique name of the KubernetesCluster |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
replace the specified KubernetesCluster
Authorizations:
path Parameters
name required | string unique name of the KubernetesCluster |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A KubernetesClusterSpec defines the desired state of a KubernetesCluster. |
object A KubernetesClusterStatus represents the observed state of a KubernetesCluster. |
Responses
Request samples
- Payload
{- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
Response samples
- 200
- 201
{- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
delete a KubernetesCluster
Authorizations:
path Parameters
name required | string unique name of the KubernetesCluster |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified KubernetesCluster
Authorizations:
path Parameters
name required | string unique name of the KubernetesCluster |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "KubernetesCluster",
- "apiVersion": "infrastructure.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-es34",
- "nke": {
- "staticEgress": {
- "enabled": false
}, - "auditLog": { }
}, - "nodePools": [
- {
- "name": "production",
- "minNodes": 3,
- "maxNodes": 3,
- "machineType": "nine-standard-2"
}
]
}
}, - "status": {
- "atProvider": {
- "apiReady": false
}
}
}
list objects of kind Project
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Project
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A ProjectSpec defines the desired state of a Project. |
object A ProjectStatus represents the observed state of a Project. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of Project
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Project
Authorizations:
path Parameters
name required | string unique name of the Project |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified Project
Authorizations:
path Parameters
name required | string unique name of the Project |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A ProjectSpec defines the desired state of a Project. |
object A ProjectStatus represents the observed state of a Project. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a Project
Authorizations:
path Parameters
name required | string unique name of the Project |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Project
Authorizations:
path Parameters
name required | string unique name of the Project |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "displayName": "string",
- "isNonProduction": true,
- "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind IngressNginx
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create an IngressNginx
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object IngressNginxSpec defines the desired state of an IngressNginx. |
object IngressNginxStatus represents the observed state of an IngressNginx. |
Responses
Request samples
- Payload
{- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of IngressNginx
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified IngressNginx
Authorizations:
path Parameters
name required | string unique name of the IngressNginx |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified IngressNginx
Authorizations:
path Parameters
name required | string unique name of the IngressNginx |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object IngressNginxSpec defines the desired state of an IngressNginx. |
object IngressNginxStatus represents the observed state of an IngressNginx. |
Responses
Request samples
- Payload
{- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
delete an IngressNginx
Authorizations:
path Parameters
name required | string unique name of the IngressNginx |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified IngressNginx
Authorizations:
path Parameters
name required | string unique name of the IngressNginx |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "IngressNginx",
- "apiVersion": "networking.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "isDefaultIngressClass": true
}
}, - "status": {
- "atProvider": { }
}
}
list objects of kind StaticEgress
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a StaticEgress
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A StaticEgressSpec defines the desired state of a StaticEgress |
object A StaticEgressStatus represents the observed state of a StaticEgress |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of StaticEgress
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified StaticEgress
Authorizations:
path Parameters
name required | string unique name of the StaticEgress |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified StaticEgress
Authorizations:
path Parameters
name required | string unique name of the StaticEgress |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A StaticEgressSpec defines the desired state of a StaticEgress |
object A StaticEgressStatus represents the observed state of a StaticEgress |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a StaticEgress
Authorizations:
path Parameters
name required | string unique name of the StaticEgress |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified StaticEgress
Authorizations:
path Parameters
name required | string unique name of the StaticEgress |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "disabled": true,
- "target": {
- "group": "string",
- "kind": "string",
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "address": "string",
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "selectionLabel": {
- "name": "string",
- "value": "string"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind Alertmanager
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create an Alertmanager
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object AlertmanagerSpec defines the desired state of an Alertmanager. |
object AlertmanagerStatus represents the observed state of an Alertmanager. |
Responses
Request samples
- Payload
{- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
delete collection of Alertmanager
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Alertmanager
Authorizations:
path Parameters
name required | string unique name of the Alertmanager |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
replace the specified Alertmanager
Authorizations:
path Parameters
name required | string unique name of the Alertmanager |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object AlertmanagerSpec defines the desired state of an Alertmanager. |
object AlertmanagerStatus represents the observed state of an Alertmanager. |
Responses
Request samples
- Payload
{- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
Response samples
- 200
- 201
{- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
delete an Alertmanager
Authorizations:
path Parameters
name required | string unique name of the Alertmanager |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Alertmanager
Authorizations:
path Parameters
name required | string unique name of the Alertmanager |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Alertmanager",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "config": "\nglobal:\n resolve_timeout: 5m\nroute:\n receiver: 'blackhole'\n group_by: ['alertname']\n group_wait: 30s\n group_interval: 5m\n repeat_interval: 1h\n routes: []\nreceivers:\n - name: blackhole\n"
}
}, - "status": {
- "atProvider": {
- "config": { }
}
}
}
list objects of kind Grafana
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Grafana
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An GrafanaSpec defines the desired state of a Grafana. |
object An GrafanaStatus represents the observed state of a Grafana. |
Responses
Request samples
- Payload
{- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of Grafana
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Grafana
Authorizations:
path Parameters
name required | string unique name of the Grafana |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified Grafana
Authorizations:
path Parameters
name required | string unique name of the Grafana |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An GrafanaSpec defines the desired state of a Grafana. |
object An GrafanaStatus represents the observed state of a Grafana. |
Responses
Request samples
- Payload
{- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
delete a Grafana
Authorizations:
path Parameters
name required | string unique name of the Grafana |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Grafana
Authorizations:
path Parameters
name required | string unique name of the Grafana |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Grafana",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "dataSource": {
- "searchNamespaces": [
- "ecorp"
]
}
}
}, - "status": {
- "atProvider": { }
}
}
list objects of kind Loki
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Loki
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An LokiSpec defines the desired state of a Loki. |
object An LokiStatus represents the observed state of a Loki. |
Responses
Request samples
- Payload
{- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of Loki
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Loki
Authorizations:
path Parameters
name required | string unique name of the Loki |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified Loki
Authorizations:
path Parameters
name required | string unique name of the Loki |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An LokiSpec defines the desired state of a Loki. |
object An LokiStatus represents the observed state of a Loki. |
Responses
Request samples
- Payload
{- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
delete a Loki
Authorizations:
path Parameters
name required | string unique name of the Loki |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Loki
Authorizations:
path Parameters
name required | string unique name of the Loki |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Loki",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "allowedCIDRs": null
}
}, - "status": {
- "atProvider": { }
}
}
list objects of kind Prometheus
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create Prometheus
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object PrometheusSpec defines the desired state of a Prometheus. |
object PrometheusStatus represents the observed state of a Prometheus. |
Responses
Request samples
- Payload
{- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of Prometheus
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Prometheus
Authorizations:
path Parameters
name required | string unique name of the Prometheus |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified Prometheus
Authorizations:
path Parameters
name required | string unique name of the Prometheus |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object PrometheusSpec defines the desired state of a Prometheus. |
object PrometheusStatus represents the observed state of a Prometheus. |
Responses
Request samples
- Payload
{- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
delete Prometheus
Authorizations:
path Parameters
name required | string unique name of the Prometheus |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Prometheus
Authorizations:
path Parameters
name required | string unique name of the Prometheus |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Prometheus",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "diskSpace": "20Gi",
- "replicas": 2,
- "enableDefaultMetrics": null,
- "alertmanagers": [
- {
- "name": "example-resource",
- "namespace": "ecorp"
}
], - "access": {
- "internal": {
- "enabled": false,
- "podSelector": { },
- "namespaceSelector": { }
}, - "noExternalAccess": false
}
}
}, - "status": {
- "atProvider": { }
}
}
list objects of kind Promtail
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Promtail
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An PromtailSpec defines the desired state of a Promtail. |
object An PromtailStatus represents the observed state of a Promtail. |
Responses
Request samples
- Payload
{- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of Promtail
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Promtail
Authorizations:
path Parameters
name required | string unique name of the Promtail |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified Promtail
Authorizations:
path Parameters
name required | string unique name of the Promtail |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An PromtailSpec defines the desired state of a Promtail. |
object An PromtailStatus represents the observed state of a Promtail. |
Responses
Request samples
- Payload
{- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
delete a Promtail
Authorizations:
path Parameters
name required | string unique name of the Promtail |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Promtail
Authorizations:
path Parameters
name required | string unique name of the Promtail |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Promtail",
- "apiVersion": "observability.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}, - "loki": {
- "name": "example-resource",
- "namespace": "ecorp"
}
}
}, - "status": {
- "atProvider": { }
}
}
list objects of kind ExternalSecrets
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create ExternalSecrets
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object ExternalSecretsSpec defines the desired state of a ExternalSecrets instance. |
object ExternalSecretsStatus represents the observed state of a ExternalSecrets instance. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of ExternalSecrets
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified ExternalSecrets
Authorizations:
path Parameters
name required | string unique name of the ExternalSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified ExternalSecrets
Authorizations:
path Parameters
name required | string unique name of the ExternalSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object ExternalSecretsSpec defines the desired state of a ExternalSecrets instance. |
object ExternalSecretsStatus represents the observed state of a ExternalSecrets instance. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete ExternalSecrets
Authorizations:
path Parameters
name required | string unique name of the ExternalSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified ExternalSecrets
Authorizations:
path Parameters
name required | string unique name of the ExternalSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cluster": {
- "name": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
]
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind SSHKey
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a SSHKey
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object SSHKeySpec defines the desired state of a SSHKey instance. |
object SSHKeyStatus represents the observed state of a SSHKey instance. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of SSHKey
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified SSHKey
Authorizations:
path Parameters
name required | string unique name of the SSHKey |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified SSHKey
Authorizations:
path Parameters
name required | string unique name of the SSHKey |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object SSHKeySpec defines the desired state of a SSHKey instance. |
object SSHKeyStatus represents the observed state of a SSHKey instance. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a SSHKey
Authorizations:
path Parameters
name required | string unique name of the SSHKey |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified SSHKey
Authorizations:
path Parameters
name required | string unique name of the SSHKey |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "format": "rsa"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "publicKey": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind SealedSecrets
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create SealedSecrets
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object SealedSecretsSpec defines the desired state of a SealedSecrets instance. |
object SealedSecretsStatus represents the observed state of a SealedSecrets instance. |
Responses
Request samples
- Payload
{- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
delete collection of SealedSecrets
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified SealedSecrets
Authorizations:
path Parameters
name required | string unique name of the SealedSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
replace the specified SealedSecrets
Authorizations:
path Parameters
name required | string unique name of the SealedSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object SealedSecretsSpec defines the desired state of a SealedSecrets instance. |
object SealedSecretsStatus represents the observed state of a SealedSecrets instance. |
Responses
Request samples
- Payload
{- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
delete SealedSecrets
Authorizations:
path Parameters
name required | string unique name of the SealedSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified SealedSecrets
Authorizations:
path Parameters
name required | string unique name of the SealedSecrets |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "SealedSecrets",
- "apiVersion": "security.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "cluster": {
- "name": "example-resource"
}
}
}, - "status": {
- "atProvider": { }
}
}
Bucket is an object storage bucket. It's used to group objects, defines who can access them and how they are stored.
list objects of kind Bucket
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Bucket
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BucketSpec defines the desired state of a Bucket. |
object A BucketStatus represents the observed state of a Bucket. |
Responses
Request samples
- Payload
{- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
delete collection of Bucket
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Bucket
Authorizations:
path Parameters
name required | string unique name of the Bucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
replace the specified Bucket
Authorizations:
path Parameters
name required | string unique name of the Bucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BucketSpec defines the desired state of a Bucket. |
object A BucketStatus represents the observed state of a Bucket. |
Responses
Request samples
- Payload
{- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
Response samples
- 200
- 201
{- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
delete a Bucket
Authorizations:
path Parameters
name required | string unique name of the Bucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Bucket
Authorizations:
path Parameters
name required | string unique name of the Bucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Bucket",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "forProvider": {
- "location": "nine-cz42",
- "storageTier": "standard",
- "permissions": [
- {
- "role": "writer",
- "userRefs": [
- {
- "name": "example-resource"
}
]
}
], - "encryption": true,
- "versioning": true
}
}, - "status": {
- "atProvider": {
- "endpoint": "",
- "publicURL": "",
- "bytesUsed": 0,
- "objectCount": 0
}
}
}
list objects of kind BucketMigration
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a BucketMigration
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BucketMigrationSpec defines the desired state of a BucketMigration. |
object A BucketMigrationStatus represents the observed state of a BucketMigration. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of BucketMigration
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified BucketMigration
Authorizations:
path Parameters
name required | string unique name of the BucketMigration |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified BucketMigration
Authorizations:
path Parameters
name required | string unique name of the BucketMigration |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BucketMigrationSpec defines the desired state of a BucketMigration. |
object A BucketMigrationStatus represents the observed state of a BucketMigration. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a BucketMigration
Authorizations:
path Parameters
name required | string unique name of the BucketMigration |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified BucketMigration
Authorizations:
path Parameters
name required | string unique name of the BucketMigration |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "deleteOutOfSyncObjects": true,
- "destination": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "destinationUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "interval": "5",
- "source": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}, - "sourceUser": {
- "group": "string",
- "kind": "string",
- "name": "string",
- "namespace": "string"
}
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "initialSync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}, - "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "resync": {
- "schedule": "string",
- "status": "string",
- "syncEndTime": "2019-08-24T14:15:22Z",
- "syncStartTime": "2019-08-24T14:15:22Z"
}
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind BucketUser
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a BucketUser
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BucketUserSpec defines the desired state of a BucketUser. |
object A BucketUserStatus represents the observed state of a BucketUser. |
Responses
Request samples
- Payload
{- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
Response samples
- 200
- 201
- 202
{- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
delete collection of BucketUser
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified BucketUser
Authorizations:
path Parameters
name required | string unique name of the BucketUser |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
replace the specified BucketUser
Authorizations:
path Parameters
name required | string unique name of the BucketUser |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A BucketUserSpec defines the desired state of a BucketUser. |
object A BucketUserStatus represents the observed state of a BucketUser. |
Responses
Request samples
- Payload
{- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
Response samples
- 200
- 201
{- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
delete a BucketUser
Authorizations:
path Parameters
name required | string unique name of the BucketUser |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified BucketUser
Authorizations:
path Parameters
name required | string unique name of the BucketUser |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "BucketUser",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": {
- "location": "nine-cz42"
}
}, - "status": {
- "atProvider": {
- "resettingCredentials": false
}
}
}
list objects of kind KeyValueStore
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a KeyValueStore
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A KeyValueStoreSpec defines the desired state of a Key-Value in-memory data store. |
object A KeyValueStoreStatus represents the observed state of a Key-Value in-memory data store. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of KeyValueStore
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified KeyValueStore
Authorizations:
path Parameters
name required | string unique name of the KeyValueStore |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified KeyValueStore
Authorizations:
path Parameters
name required | string unique name of the KeyValueStore |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A KeyValueStoreSpec defines the desired state of a Key-Value in-memory data store. |
object A KeyValueStoreStatus represents the observed state of a Key-Value in-memory data store. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a KeyValueStore
Authorizations:
path Parameters
name required | string unique name of the KeyValueStore |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified KeyValueStore
Authorizations:
path Parameters
name required | string unique name of the KeyValueStore |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "location": "nine-cz41",
- "maxMemoryPolicy": "noeviction",
- "memorySize": "string",
- "version": "7"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "caCert": "string",
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "diskSize": "string",
- "fqdn": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind MySQL
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a MySQL
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A MySQLSpec defines the desired state of a MySQL database. |
object A MySQLStatus represents the observed state of a MySQL database. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of MySQL
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified MySQL
Authorizations:
path Parameters
name required | string unique name of the MySQL |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified MySQL
Authorizations:
path Parameters
name required | string unique name of the MySQL |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A MySQLSpec defines the desired state of a MySQL database. |
object A MySQLStatus represents the observed state of a MySQL database. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete a MySQL
Authorizations:
path Parameters
name required | string unique name of the MySQL |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified MySQL
Authorizations:
path Parameters
name required | string unique name of the MySQL |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "characterSet": {
- "collation": "armscii8_bin",
- "name": "armscii8"
}, - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "longQueryTime": "string",
- "machineType": "nine-standard-1",
- "minWordLength": 1,
- "sqlMode": [
- "ALLOW_INVALID_DATES"
], - "sshKeys": [
- "string"
], - "transactionIsolation": "READ-UNCOMMITTED",
- "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind ObjectsBucket
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create an ObjectsBucket
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A ObjectsBucketSpec defines the desired state of an ObjectsBucket. |
object A ObjectsBucketStatus represents the observed state of an ObjectsBucket. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of ObjectsBucket
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified ObjectsBucket
Authorizations:
path Parameters
name required | string unique name of the ObjectsBucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified ObjectsBucket
Authorizations:
path Parameters
name required | string unique name of the ObjectsBucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A ObjectsBucketSpec defines the desired state of an ObjectsBucket. |
object A ObjectsBucketStatus represents the observed state of an ObjectsBucket. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete an ObjectsBucket
Authorizations:
path Parameters
name required | string unique name of the ObjectsBucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified ObjectsBucket
Authorizations:
path Parameters
name required | string unique name of the ObjectsBucket |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "cors": {
- "maxAge": 0,
- "origins": [
- "string"
], - "responseHeaders": [
- "string"
]
}, - "lifecyclePolicies": [
- {
- "expireAfter": "string",
- "expireAfterDays": 0,
- "isLive": true,
- "prefix": "string"
}
], - "location": "nine-cz41",
- "permissions": [
- {
- "role": "reader",
- "userRefs": [
- {
- "name": "string"
}
]
}
], - "publicList": true,
- "publicRead": true,
- "versioning": true
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "bytesUsed": 0,
- "endpoint": "string",
- "objectCount": 0,
- "referenceErrors": [
- {
- "kind": "string",
- "message": "string",
- "name": "string",
- "namespace": "string"
}
], - "url": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind Postgres
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create Postgres
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A PostgresSpec defines the desired state of a Postgres database. |
object A PostgresStatus represents the observed state of a Postgres database. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
- 202
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete collection of Postgres
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Postgres
Authorizations:
path Parameters
name required | string unique name of the Postgres |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
replace the specified Postgres
Authorizations:
path Parameters
name required | string unique name of the Postgres |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object A PostgresSpec defines the desired state of a Postgres database. |
object A PostgresStatus represents the observed state of a Postgres database. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
Response samples
- 200
- 201
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
delete Postgres
Authorizations:
path Parameters
name required | string unique name of the Postgres |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Postgres
Authorizations:
path Parameters
name required | string unique name of the Postgres |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "apiVersion": "string",
- "kind": "string",
- "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "creationTimestamp": "2019-08-24T14:15:22Z",
- "deletionGracePeriodSeconds": 0,
- "deletionTimestamp": "2019-08-24T14:15:22Z",
- "finalizers": [
- "string"
], - "generateName": "string",
- "generation": 0,
- "labels": {
- "property1": "string",
- "property2": "string"
}, - "managedFields": [
- {
- "apiVersion": "string",
- "fieldsType": "string",
- "fieldsV1": { },
- "manager": "string",
- "operation": "string",
- "subresource": "string",
- "time": "2019-08-24T14:15:22Z"
}
], - "name": "string",
- "namespace": "string",
- "ownerReferences": [
- {
- "apiVersion": "string",
- "blockOwnerDeletion": true,
- "controller": true,
- "kind": "string",
- "name": "string",
- "uid": "string"
}
], - "resourceVersion": "string",
- "selfLink": "string",
- "uid": "string"
}, - "spec": {
- "deletionPolicy": "Orphan",
- "forProvider": {
- "allowedCIDRs": [
- "string"
], - "keepDailyBackups": 365,
- "location": "nine-cz41",
- "machineType": "nine-standard-1",
- "sshKeys": [
- "string"
], - "version": "string"
}, - "managementPolicies": [
- "Observe"
], - "providerConfigRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "publishConnectionDetailsTo": {
- "configRef": {
- "name": "string",
- "policy": {
- "resolution": "Required",
- "resolve": "Always"
}
}, - "metadata": {
- "annotations": {
- "property1": "string",
- "property2": "string"
}, - "labels": {
- "property1": "string",
- "property2": "string"
}, - "type": "string"
}, - "name": "string"
}, - "writeConnectionSecretToRef": {
- "name": "string",
- "namespace": "string"
}
}, - "status": {
- "atProvider": {
- "childResourceErrors": [
- {
- "message": "string",
- "resource": {
- "name": "string",
- "namespace": "string"
}, - "type": {
- "group": "string",
- "kind": "string",
- "version": "string"
}
}
], - "databases": {
- "property1": {
- "connections": 0,
- "size": "string"
}, - "property2": {
- "connections": 0,
- "size": "string"
}
}, - "fqdn": "string",
- "size": "string"
}, - "conditions": [
- {
- "lastTransitionTime": "2019-08-24T14:15:22Z",
- "message": "string",
- "observedGeneration": 0,
- "reason": "string",
- "status": "string",
- "type": "string"
}
], - "observedGeneration": 0
}
}
list objects of kind Registry
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "items": [
- {
- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}
], - "kind": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}
}
create a Registry
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An RegistrySpec defines the desired state of a Registry. |
object An RegistryStatus represents the observed state of a Registry. |
Responses
Request samples
- Payload
{- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
- 202
{- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}
delete collection of Registry
Authorizations:
path Parameters
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
allowWatchBookmarks | boolean unique allowWatchBookmarks requests watch events with type "BOOKMARK". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. |
continue | string unique 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. |
fieldSelector | string unique A selector to restrict the list of returned objects by their fields. Defaults to everything. |
labelSelector | string unique A selector to restrict the list of returned objects by their labels. Defaults to everything. |
limit | integer unique limit is a maximum number of responses to return for a list call. If more items exist, the server will set the 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. |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
resourceVersionMatch | string unique resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
sendInitialEvents | boolean unique
When
Defaults to true if |
timeoutSeconds | integer unique Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. |
watch | boolean unique Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. |
Responses
Response samples
- 200
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
read the specified Registry
Authorizations:
path Parameters
name required | string unique name of the Registry |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
resourceVersion | string unique resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset |
Responses
Response samples
- 200
{- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}
replace the specified Registry
Authorizations:
path Parameters
name required | string unique name of the Registry |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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. |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Request Body schema: required
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
object (io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta) ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. | |
required | object An RegistrySpec defines the desired state of a Registry. |
object An RegistryStatus represents the observed state of a Registry. |
Responses
Request samples
- Payload
{- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}
Response samples
- 200
- 201
{- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}
delete a Registry
Authorizations:
path Parameters
name required | string unique name of the Registry |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
gracePeriodSeconds | integer unique 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. |
orphanDependents | boolean unique Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
propagationPolicy | string unique 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Request Body schema:
apiVersion | string APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
dryRun | Array of strings 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 |
gracePeriodSeconds | integer <int64> 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. |
kind | string Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
orphanDependents | boolean Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both. |
object (io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions) Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out. | |
propagationPolicy | string 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. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground. |
Responses
Request samples
- Payload
{- "apiVersion": "string",
- "dryRun": [
- "string"
], - "gracePeriodSeconds": 0,
- "kind": "string",
- "orphanDependents": true,
- "preconditions": {
- "resourceVersion": "string",
- "uid": "string"
}, - "propagationPolicy": "string"
}
Response samples
- 200
- 202
{- "apiVersion": "string",
- "code": 0,
- "details": {
- "causes": [
- {
- "field": "string",
- "message": "string",
- "reason": "string"
}
], - "group": "string",
- "kind": "string",
- "name": "string",
- "retryAfterSeconds": 0,
- "uid": "string"
}, - "kind": "string",
- "message": "string",
- "metadata": {
- "continue": "string",
- "remainingItemCount": 0,
- "resourceVersion": "string",
- "selfLink": "string"
}, - "reason": "string",
- "status": "string"
}
partially update the specified Registry
Authorizations:
path Parameters
name required | string unique name of the Registry |
namespace required | string unique object name and auth scope, such as for teams and projects |
query Parameters
pretty | string unique If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). |
dryRun | string unique 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 |
fieldManager | string unique 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). |
fieldValidation | string unique fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
force | boolean unique 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. |
Request Body schema: required
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Responses
Request samples
- Payload
{ }
Response samples
- 200
{- "kind": "Registry",
- "apiVersion": "storage.nine.ch/v1alpha1",
- "metadata": {
- "name": "example-resource",
- "namespace": "ecorp",
- "creationTimestamp": null
}, - "spec": {
- "writeConnectionSecretToRef": {
- "name": "credentials",
- "namespace": "ecorp"
}, - "forProvider": { }
}, - "status": {
- "atProvider": { }
}
}