{ "schemes": [ "https" ], "swagger": "2.0", "info": { "description": "# Introduction\n\nThe Nine Self Service API allows you to provision various services using a\nHTTP REST API. The API is based on Kubernetes, meaning existing tooling can be\nused to interact with it.\n\n## Authentication\n\nThe API uses bearer tokens for authentication. You can get a token by creating\nan API Service Account [using nctl](https://github.com/ninech/nctl/):\n\n```bash\nnctl auth login \u003caccount name\u003e\nnctl create asa cicd\nnctl get asa cicd --print-token\n```\n\nThe token has to be sent with each request using the `Authorization: Bearer\n\u003ctoken\u003e` HTTP header.\n\n## Namespace\n\nAll the resources you can create reside in a namespace allocated for your\nCockpit account. This means with all requests you will have to specify the\nnamespace of the resource you are interacting with. The namespace equals to\nthe account name that is displayed under *Recently Used* in Cockpit. The\nservice account you previously created just has access to resources in the\nsame namespace it resides in.\n\n## Making a first request\n\nTo verify that the token works as expected, you can try to issue the following\nrequest using `curl`. If you get the following reply, the authentication\nworks:\n\n```bash\n$ curl https://nineapis.ch/api/ -H \"Authorization: Bearer \u003ctoken\u003e\"\n{\n \"kind\": \"APIVersions\",\n \"versions\": [\n \"v1\"\n ],\n ...\n}\n```\n\n## Creating a resource with curl\n\nNow that we are authenticated with the API, let's create a first resource with\nit. Note that a lot of resources that can be created on the API incur costs,\nso be careful when testing your integration. Here we create an object storage\nbucket, which by itself is free as long as no data is uploaded to it.\n\n```bash\n$ curl -X POST https://nineapis.ch/apis/storage.nine.ch/v1alpha1/namespaces/\u003cyour namespace\u003e/buckets \\\n -H \"Authorization: Bearer \u003ctoken\u003e\" \\\n -H \"Content-Type: application/json\" \\\n --request POST \\\n --data '{\n \"kind\": \"Bucket\",\n \"apiVersion\": \"storage.nine.ch/v1alpha1\",\n \"metadata\": {\n \"name\": \"hello-api\"\n },\n \"spec\": {\n \"forProvider\": {\n \"encryption\": true,\n \"location\": \"nine-es34\"\n }\n }\n}'\n```\n\n## Using kubectl\n\nBesides using any HTTP client, the API can also be interacted with using the\ncommand line tool\n[`kubectl`](https://kubernetes.io/docs/reference/kubectl/overview/). After\nauthenticating with `nctl` you can simply access resources by their name.\n\n ```bash\n$ kubectl get buckets.storage.nine.ch\nNAME SYNCED READY AGE\nhello-api True True 10m\n```\n\n## Resource Status\n\nAfter you create a resource using the API, how do you know it is ready? This\nis where the `status.conditions` field comes in. It represents the current\nstate of that resource. For example, when getting the status of a `Bucket` it\nmight look something like this:\n\n```json\n\"status\": {\n \"conditions\": [\n {\n \"lastTransitionTime\": \"2023-03-05T08:25:41Z\",\n \"reason\": \"ReconcileSuccess\",\n \"status\": \"True\",\n \"type\": \"Synced\"\n },\n {\n \"lastTransitionTime\": \"2023-03-05T08:25:41Z\",\n \"reason\": \"Available\",\n \"status\": \"True\",\n \"type\": \"Ready\"\n }\n ]\n}\n```\n\nFor knowing whether a resource is ready to use, the relevant condition is the\none with `type: Ready`. This one indicates whether the backend resource is\nready. The other important field within the condition is the `reason`. The\nfollowing\n[reasons](https://pkg.go.dev/github.com/crossplane/crossplane-runtime@v0.12.0/apis/common/v1#ConditionReason)\nexist:\n\n* Available: The resource is available for use.\n* Unavailable: The resource is currently unhealthy, making it temporarily\n unavailable.\n* Creating: The resource is currently being created.\n* Deleting The resource is currently being deleted.\n\nFor catching errors during the creation process, one should look for the `type: Synced`.\nThere is a `reason` field, same as with the ready status. Here we simply have\nthese reasons:\n\n* ReconcileSuccess: The resource has at successfully reconciled at least once.\n Note that this does not mean it is ready to use.\n* ReconcileError: The resource experienced an error during reconciliation. In\n this case, have a look at the `message` field to tell you more about why it\n errored.\n\n## Connection Secret\n\nFor resources which need credentials to access them after creation, there is a\nsystem in place to automatically write those credentials to a normal Kubernetes\nsecret. For example, when creating a `BucketUser` it generates an S3 access key\nand secret which can then be used to authenticate against the object storage. As\na user you can simply tell the `BucketUser` where to write those credentials by\nusing the `spec.writeConnectionSecretToRef` field.\n\n```json\n\"spec\": {\n \"writeConnectionSecretToRef\": {\n \"name\": \"some-secret\",\n \"namespace\": \"\u003cyour namespace\u003e\"\n }\n}\n```\n\nIn this case, the credentials would end up in the secret `a-secret` within your\norganizations namespace.\n\n## Deletion Protection\n\nThe deletion protection feature helps prevent accidental deletion of the\nAPI resources listed in this documentation. This is an additional security measure intended\nto protect production applications and related data.\n\nTo prevent a resource from being deleted, you can add the\n`nine.ch/deletion-protection: \"true\"` annotation. As long as this annotation exists,\nthe resource can not be deleted. Please make sure you use `\"true\"` to activate\nthis feature. For example, to protect your `projects.management.nine.ch` named `foo`,\nyou can use the following command:\n\n```bash\nkubectl annotate projects.management.nine.ch foo nine.ch/deletion-protection=true\n```\n\nTo test if the annotation prevents an accidental deletion you can use the\n`--dry-run=server` option of `kubectl`:\n\n```bash\nkubectl delete --dry-run=server projects.management.nine.ch foo\n\nError from server (Forbidden): admission webhook\n\"deletion-protection.nine-controllers.nine.ch\" denied the request: preventing\ndeletion because of nine.ch/deletion-protection annotation\n```\n\nTo disable the deletion protection, you can either remove the annotation\ncompletely or use the value `\"false\"`:\n\n```bash\nkubectl annotate --overwrite projects.management.nine.ch foo nine.ch/deletion-protection=false\n```\n\nAn additional deletion test should confirm feature deactivation:\n\n```bash\nkubectl delete --dry-run=server projects.management.nine.ch foo\n\nproject.management.nine.ch \"nine-staging-foo\" deleted (server dry run)\n```\n\nPlease note that using a value other than `\"true\"` or `\"false\"` will result in\nan error when modifying the resource.\n", "title": "Nine Self Service API", "version": "v1alpha1", "x-logo": { "url": "logo.svg", "backgroundColor": "#0091CF", "altText": "Nine logo" } }, "host": "nineapis.ch", "paths": { "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/applications": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "list objects of kind Application", "operationId": "listAppsNineChV1alpha1NamespacedApplication", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ApplicationList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "create an Application", "operationId": "createAppsNineChV1alpha1NamespacedApplication", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "delete collection of Application", "operationId": "deleteAppsNineChV1alpha1CollectionNamespacedApplication", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/applications/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "read the specified Application", "operationId": "readAppsNineChV1alpha1NamespacedApplication", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "replace the specified Application", "operationId": "replaceAppsNineChV1alpha1NamespacedApplication", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "delete an Application", "operationId": "deleteAppsNineChV1alpha1NamespacedApplication", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Application" ], "summary": "partially update the specified Application", "operationId": "patchAppsNineChV1alpha1NamespacedApplication", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Application", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/builds": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "list objects of kind Build", "operationId": "listAppsNineChV1alpha1NamespacedBuild", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.BuildList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "create a Build", "operationId": "createAppsNineChV1alpha1NamespacedBuild", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "delete collection of Build", "operationId": "deleteAppsNineChV1alpha1CollectionNamespacedBuild", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/builds/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "read the specified Build", "operationId": "readAppsNineChV1alpha1NamespacedBuild", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "replace the specified Build", "operationId": "replaceAppsNineChV1alpha1NamespacedBuild", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "delete a Build", "operationId": "deleteAppsNineChV1alpha1NamespacedBuild", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Build" ], "summary": "partially update the specified Build", "operationId": "patchAppsNineChV1alpha1NamespacedBuild", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Build", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/projectconfigs": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "list objects of kind ProjectConfig", "operationId": "listAppsNineChV1alpha1NamespacedProjectConfig", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfigList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "create a ProjectConfig", "operationId": "createAppsNineChV1alpha1NamespacedProjectConfig", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "delete collection of ProjectConfig", "operationId": "deleteAppsNineChV1alpha1CollectionNamespacedProjectConfig", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/projectconfigs/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "read the specified ProjectConfig", "operationId": "readAppsNineChV1alpha1NamespacedProjectConfig", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "replace the specified ProjectConfig", "operationId": "replaceAppsNineChV1alpha1NamespacedProjectConfig", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "delete a ProjectConfig", "operationId": "deleteAppsNineChV1alpha1NamespacedProjectConfig", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ProjectConfig" ], "summary": "partially update the specified ProjectConfig", "operationId": "patchAppsNineChV1alpha1NamespacedProjectConfig", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the ProjectConfig", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/releases": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "list objects of kind Release", "operationId": "listAppsNineChV1alpha1NamespacedRelease", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ReleaseList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "create a Release", "operationId": "createAppsNineChV1alpha1NamespacedRelease", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "delete collection of Release", "operationId": "deleteAppsNineChV1alpha1CollectionNamespacedRelease", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/apps.nine.ch/v1alpha1/namespaces/{namespace}/releases/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "read the specified Release", "operationId": "readAppsNineChV1alpha1NamespacedRelease", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "replace the specified Release", "operationId": "replaceAppsNineChV1alpha1NamespacedRelease", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "delete a Release", "operationId": "deleteAppsNineChV1alpha1NamespacedRelease", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Release" ], "summary": "partially update the specified Release", "operationId": "patchAppsNineChV1alpha1NamespacedRelease", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Release", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/devtools.nine.ch/v1alpha1/namespaces/{namespace}/argocds": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "list objects of kind ArgoCD", "operationId": "listDevtoolsNineChV1alpha1NamespacedArgoCD", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCDList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "create an ArgoCD", "operationId": "createDevtoolsNineChV1alpha1NamespacedArgoCD", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "delete collection of ArgoCD", "operationId": "deleteDevtoolsNineChV1alpha1CollectionNamespacedArgoCD", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/devtools.nine.ch/v1alpha1/namespaces/{namespace}/argocds/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "read the specified ArgoCD", "operationId": "readDevtoolsNineChV1alpha1NamespacedArgoCD", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "replace the specified ArgoCD", "operationId": "replaceDevtoolsNineChV1alpha1NamespacedArgoCD", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "delete an ArgoCD", "operationId": "deleteDevtoolsNineChV1alpha1NamespacedArgoCD", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ArgoCD" ], "summary": "partially update the specified ArgoCD", "operationId": "patchDevtoolsNineChV1alpha1NamespacedArgoCD", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the ArgoCD", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/iam.nine.ch/v1alpha1/namespaces/{namespace}/apiserviceaccounts": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "list objects of kind APIServiceAccount", "operationId": "listIamNineChV1alpha1NamespacedAPIServiceAccount", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccountList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "create an APIServiceAccount", "operationId": "createIamNineChV1alpha1NamespacedAPIServiceAccount", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "delete collection of APIServiceAccount", "operationId": "deleteIamNineChV1alpha1CollectionNamespacedAPIServiceAccount", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/iam.nine.ch/v1alpha1/namespaces/{namespace}/apiserviceaccounts/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "read the specified APIServiceAccount", "operationId": "readIamNineChV1alpha1NamespacedAPIServiceAccount", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "replace the specified APIServiceAccount", "operationId": "replaceIamNineChV1alpha1NamespacedAPIServiceAccount", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "delete an APIServiceAccount", "operationId": "deleteIamNineChV1alpha1NamespacedAPIServiceAccount", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "APIServiceAccount" ], "summary": "partially update the specified APIServiceAccount", "operationId": "patchIamNineChV1alpha1NamespacedAPIServiceAccount", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the APIServiceAccount", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/iam.nine.ch/v1alpha1/namespaces/{namespace}/kubernetesclustersrolebindings": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "list objects of kind KubernetesClustersRoleBinding", "operationId": "listIamNineChV1alpha1NamespacedKubernetesClustersRoleBinding", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBindingList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "create a KubernetesClustersRoleBinding", "operationId": "createIamNineChV1alpha1NamespacedKubernetesClustersRoleBinding", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "delete collection of KubernetesClustersRoleBinding", "operationId": "deleteIamNineChV1alpha1CollectionNamespacedKubernetesClustersRoleBinding", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/iam.nine.ch/v1alpha1/namespaces/{namespace}/kubernetesclustersrolebindings/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "read the specified KubernetesClustersRoleBinding", "operationId": "readIamNineChV1alpha1NamespacedKubernetesClustersRoleBinding", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "replace the specified KubernetesClustersRoleBinding", "operationId": "replaceIamNineChV1alpha1NamespacedKubernetesClustersRoleBinding", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "delete a KubernetesClustersRoleBinding", "operationId": "deleteIamNineChV1alpha1NamespacedKubernetesClustersRoleBinding", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesClustersRoleBinding" ], "summary": "partially update the specified KubernetesClustersRoleBinding", "operationId": "patchIamNineChV1alpha1NamespacedKubernetesClustersRoleBinding", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the KubernetesClustersRoleBinding", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/iam.nine.ch/v1alpha1/namespaces/{namespace}/kubernetesserviceaccounts": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "list objects of kind KubernetesServiceAccount", "operationId": "listIamNineChV1alpha1NamespacedKubernetesServiceAccount", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccountList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "create a KubernetesServiceAccount", "operationId": "createIamNineChV1alpha1NamespacedKubernetesServiceAccount", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "delete collection of KubernetesServiceAccount", "operationId": "deleteIamNineChV1alpha1CollectionNamespacedKubernetesServiceAccount", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/iam.nine.ch/v1alpha1/namespaces/{namespace}/kubernetesserviceaccounts/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "read the specified KubernetesServiceAccount", "operationId": "readIamNineChV1alpha1NamespacedKubernetesServiceAccount", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "replace the specified KubernetesServiceAccount", "operationId": "replaceIamNineChV1alpha1NamespacedKubernetesServiceAccount", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "delete a KubernetesServiceAccount", "operationId": "deleteIamNineChV1alpha1NamespacedKubernetesServiceAccount", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesServiceAccount" ], "summary": "partially update the specified KubernetesServiceAccount", "operationId": "patchIamNineChV1alpha1NamespacedKubernetesServiceAccount", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the KubernetesServiceAccount", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/infrastructure.nine.ch/v1alpha1/namespaces/{namespace}/kedas": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "list objects of kind Keda", "operationId": "listInfrastructureNineChV1alpha1NamespacedKeda", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KedaList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "create a Keda", "operationId": "createInfrastructureNineChV1alpha1NamespacedKeda", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "delete collection of Keda", "operationId": "deleteInfrastructureNineChV1alpha1CollectionNamespacedKeda", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/infrastructure.nine.ch/v1alpha1/namespaces/{namespace}/kedas/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "read the specified Keda", "operationId": "readInfrastructureNineChV1alpha1NamespacedKeda", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "replace the specified Keda", "operationId": "replaceInfrastructureNineChV1alpha1NamespacedKeda", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "delete a Keda", "operationId": "deleteInfrastructureNineChV1alpha1NamespacedKeda", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Keda" ], "summary": "partially update the specified Keda", "operationId": "patchInfrastructureNineChV1alpha1NamespacedKeda", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Keda", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/infrastructure.nine.ch/v1alpha1/namespaces/{namespace}/kubernetesclusters": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "list objects of kind KubernetesCluster", "operationId": "listInfrastructureNineChV1alpha1NamespacedKubernetesCluster", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesClusterList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "create a KubernetesCluster", "operationId": "createInfrastructureNineChV1alpha1NamespacedKubernetesCluster", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "delete collection of KubernetesCluster", "operationId": "deleteInfrastructureNineChV1alpha1CollectionNamespacedKubernetesCluster", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/infrastructure.nine.ch/v1alpha1/namespaces/{namespace}/kubernetesclusters/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "read the specified KubernetesCluster", "operationId": "readInfrastructureNineChV1alpha1NamespacedKubernetesCluster", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "replace the specified KubernetesCluster", "operationId": "replaceInfrastructureNineChV1alpha1NamespacedKubernetesCluster", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "delete a KubernetesCluster", "operationId": "deleteInfrastructureNineChV1alpha1NamespacedKubernetesCluster", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KubernetesCluster" ], "summary": "partially update the specified KubernetesCluster", "operationId": "patchInfrastructureNineChV1alpha1NamespacedKubernetesCluster", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the KubernetesCluster", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/management.nine.ch/v1alpha1/namespaces/{namespace}/projects": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "list objects of kind Project", "operationId": "listManagementNineChV1alpha1NamespacedProject", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.ProjectList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "create a Project", "operationId": "createManagementNineChV1alpha1NamespacedProject", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "delete collection of Project", "operationId": "deleteManagementNineChV1alpha1CollectionNamespacedProject", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/management.nine.ch/v1alpha1/namespaces/{namespace}/projects/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "read the specified Project", "operationId": "readManagementNineChV1alpha1NamespacedProject", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "replace the specified Project", "operationId": "replaceManagementNineChV1alpha1NamespacedProject", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "delete a Project", "operationId": "deleteManagementNineChV1alpha1NamespacedProject", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Project" ], "summary": "partially update the specified Project", "operationId": "patchManagementNineChV1alpha1NamespacedProject", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Project", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/networking.nine.ch/v1alpha1/namespaces/{namespace}/ingressnginxes": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "list objects of kind IngressNginx", "operationId": "listNetworkingNineChV1alpha1NamespacedIngressNginx", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginxList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "create an IngressNginx", "operationId": "createNetworkingNineChV1alpha1NamespacedIngressNginx", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "delete collection of IngressNginx", "operationId": "deleteNetworkingNineChV1alpha1CollectionNamespacedIngressNginx", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/networking.nine.ch/v1alpha1/namespaces/{namespace}/ingressnginxes/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "read the specified IngressNginx", "operationId": "readNetworkingNineChV1alpha1NamespacedIngressNginx", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "replace the specified IngressNginx", "operationId": "replaceNetworkingNineChV1alpha1NamespacedIngressNginx", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "delete an IngressNginx", "operationId": "deleteNetworkingNineChV1alpha1NamespacedIngressNginx", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "IngressNginx" ], "summary": "partially update the specified IngressNginx", "operationId": "patchNetworkingNineChV1alpha1NamespacedIngressNginx", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the IngressNginx", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/alertmanagers": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "list objects of kind Alertmanager", "operationId": "listObservabilityNineChV1alpha1NamespacedAlertmanager", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.AlertmanagerList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "create an Alertmanager", "operationId": "createObservabilityNineChV1alpha1NamespacedAlertmanager", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "delete collection of Alertmanager", "operationId": "deleteObservabilityNineChV1alpha1CollectionNamespacedAlertmanager", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/alertmanagers/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "read the specified Alertmanager", "operationId": "readObservabilityNineChV1alpha1NamespacedAlertmanager", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "replace the specified Alertmanager", "operationId": "replaceObservabilityNineChV1alpha1NamespacedAlertmanager", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "delete an Alertmanager", "operationId": "deleteObservabilityNineChV1alpha1NamespacedAlertmanager", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Alertmanager" ], "summary": "partially update the specified Alertmanager", "operationId": "patchObservabilityNineChV1alpha1NamespacedAlertmanager", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Alertmanager", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/grafanas": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "list objects of kind Grafana", "operationId": "listObservabilityNineChV1alpha1NamespacedGrafana", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.GrafanaList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "create a Grafana", "operationId": "createObservabilityNineChV1alpha1NamespacedGrafana", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "delete collection of Grafana", "operationId": "deleteObservabilityNineChV1alpha1CollectionNamespacedGrafana", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/grafanas/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "read the specified Grafana", "operationId": "readObservabilityNineChV1alpha1NamespacedGrafana", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "replace the specified Grafana", "operationId": "replaceObservabilityNineChV1alpha1NamespacedGrafana", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "delete a Grafana", "operationId": "deleteObservabilityNineChV1alpha1NamespacedGrafana", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Grafana" ], "summary": "partially update the specified Grafana", "operationId": "patchObservabilityNineChV1alpha1NamespacedGrafana", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Grafana", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/lokis": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "list objects of kind Loki", "operationId": "listObservabilityNineChV1alpha1NamespacedLoki", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.LokiList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "create a Loki", "operationId": "createObservabilityNineChV1alpha1NamespacedLoki", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "delete collection of Loki", "operationId": "deleteObservabilityNineChV1alpha1CollectionNamespacedLoki", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/lokis/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "read the specified Loki", "operationId": "readObservabilityNineChV1alpha1NamespacedLoki", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "replace the specified Loki", "operationId": "replaceObservabilityNineChV1alpha1NamespacedLoki", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "delete a Loki", "operationId": "deleteObservabilityNineChV1alpha1NamespacedLoki", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Loki" ], "summary": "partially update the specified Loki", "operationId": "patchObservabilityNineChV1alpha1NamespacedLoki", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Loki", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/prometheuses": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "list objects of kind Prometheus", "operationId": "listObservabilityNineChV1alpha1NamespacedPrometheus", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.PrometheusList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "create Prometheus", "operationId": "createObservabilityNineChV1alpha1NamespacedPrometheus", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "delete collection of Prometheus", "operationId": "deleteObservabilityNineChV1alpha1CollectionNamespacedPrometheus", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/prometheuses/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "read the specified Prometheus", "operationId": "readObservabilityNineChV1alpha1NamespacedPrometheus", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "replace the specified Prometheus", "operationId": "replaceObservabilityNineChV1alpha1NamespacedPrometheus", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "delete Prometheus", "operationId": "deleteObservabilityNineChV1alpha1NamespacedPrometheus", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Prometheus" ], "summary": "partially update the specified Prometheus", "operationId": "patchObservabilityNineChV1alpha1NamespacedPrometheus", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Prometheus", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/promtails": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "list objects of kind Promtail", "operationId": "listObservabilityNineChV1alpha1NamespacedPromtail", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.PromtailList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "create a Promtail", "operationId": "createObservabilityNineChV1alpha1NamespacedPromtail", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "delete collection of Promtail", "operationId": "deleteObservabilityNineChV1alpha1CollectionNamespacedPromtail", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/observability.nine.ch/v1alpha1/namespaces/{namespace}/promtails/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "read the specified Promtail", "operationId": "readObservabilityNineChV1alpha1NamespacedPromtail", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "replace the specified Promtail", "operationId": "replaceObservabilityNineChV1alpha1NamespacedPromtail", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "delete a Promtail", "operationId": "deleteObservabilityNineChV1alpha1NamespacedPromtail", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Promtail" ], "summary": "partially update the specified Promtail", "operationId": "patchObservabilityNineChV1alpha1NamespacedPromtail", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Promtail", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/security.nine.ch/v1alpha1/namespaces/{namespace}/externalsecrets": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "list objects of kind ExternalSecrets", "operationId": "listSecurityNineChV1alpha1NamespacedExternalSecrets", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecretsList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "create ExternalSecrets", "operationId": "createSecurityNineChV1alpha1NamespacedExternalSecrets", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "delete collection of ExternalSecrets", "operationId": "deleteSecurityNineChV1alpha1CollectionNamespacedExternalSecrets", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/security.nine.ch/v1alpha1/namespaces/{namespace}/externalsecrets/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "read the specified ExternalSecrets", "operationId": "readSecurityNineChV1alpha1NamespacedExternalSecrets", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "replace the specified ExternalSecrets", "operationId": "replaceSecurityNineChV1alpha1NamespacedExternalSecrets", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "delete ExternalSecrets", "operationId": "deleteSecurityNineChV1alpha1NamespacedExternalSecrets", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ExternalSecrets" ], "summary": "partially update the specified ExternalSecrets", "operationId": "patchSecurityNineChV1alpha1NamespacedExternalSecrets", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the ExternalSecrets", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/security.nine.ch/v1alpha1/namespaces/{namespace}/sealedsecrets": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "list objects of kind SealedSecrets", "operationId": "listSecurityNineChV1alpha1NamespacedSealedSecrets", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecretsList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "create SealedSecrets", "operationId": "createSecurityNineChV1alpha1NamespacedSealedSecrets", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "delete collection of SealedSecrets", "operationId": "deleteSecurityNineChV1alpha1CollectionNamespacedSealedSecrets", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/security.nine.ch/v1alpha1/namespaces/{namespace}/sealedsecrets/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "read the specified SealedSecrets", "operationId": "readSecurityNineChV1alpha1NamespacedSealedSecrets", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "replace the specified SealedSecrets", "operationId": "replaceSecurityNineChV1alpha1NamespacedSealedSecrets", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "delete SealedSecrets", "operationId": "deleteSecurityNineChV1alpha1NamespacedSealedSecrets", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SealedSecrets" ], "summary": "partially update the specified SealedSecrets", "operationId": "patchSecurityNineChV1alpha1NamespacedSealedSecrets", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the SealedSecrets", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/security.nine.ch/v1alpha1/namespaces/{namespace}/sshkeys": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "list objects of kind SSHKey", "operationId": "listSecurityNineChV1alpha1NamespacedSSHKey", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKeyList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "create a SSHKey", "operationId": "createSecurityNineChV1alpha1NamespacedSSHKey", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "delete collection of SSHKey", "operationId": "deleteSecurityNineChV1alpha1CollectionNamespacedSSHKey", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/security.nine.ch/v1alpha1/namespaces/{namespace}/sshkeys/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "read the specified SSHKey", "operationId": "readSecurityNineChV1alpha1NamespacedSSHKey", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "replace the specified SSHKey", "operationId": "replaceSecurityNineChV1alpha1NamespacedSSHKey", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "delete a SSHKey", "operationId": "deleteSecurityNineChV1alpha1NamespacedSSHKey", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "SSHKey" ], "summary": "partially update the specified SSHKey", "operationId": "patchSecurityNineChV1alpha1NamespacedSSHKey", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the SSHKey", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/bucketmigrations": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "list objects of kind BucketMigration", "operationId": "listStorageNineChV1alpha1NamespacedBucketMigration", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigrationList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "create a BucketMigration", "operationId": "createStorageNineChV1alpha1NamespacedBucketMigration", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "delete collection of BucketMigration", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedBucketMigration", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/bucketmigrations/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "read the specified BucketMigration", "operationId": "readStorageNineChV1alpha1NamespacedBucketMigration", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "replace the specified BucketMigration", "operationId": "replaceStorageNineChV1alpha1NamespacedBucketMigration", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "delete a BucketMigration", "operationId": "deleteStorageNineChV1alpha1NamespacedBucketMigration", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketMigration" ], "summary": "partially update the specified BucketMigration", "operationId": "patchStorageNineChV1alpha1NamespacedBucketMigration", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the BucketMigration", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/buckets": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "list objects of kind Bucket", "operationId": "listStorageNineChV1alpha1NamespacedBucket", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "create a Bucket", "operationId": "createStorageNineChV1alpha1NamespacedBucket", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "delete collection of Bucket", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedBucket", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/buckets/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "read the specified Bucket", "operationId": "readStorageNineChV1alpha1NamespacedBucket", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "replace the specified Bucket", "operationId": "replaceStorageNineChV1alpha1NamespacedBucket", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "delete a Bucket", "operationId": "deleteStorageNineChV1alpha1NamespacedBucket", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Bucket" ], "summary": "partially update the specified Bucket", "operationId": "patchStorageNineChV1alpha1NamespacedBucket", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Bucket", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/bucketusers": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "list objects of kind BucketUser", "operationId": "listStorageNineChV1alpha1NamespacedBucketUser", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUserList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "create a BucketUser", "operationId": "createStorageNineChV1alpha1NamespacedBucketUser", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "delete collection of BucketUser", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedBucketUser", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/bucketusers/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "read the specified BucketUser", "operationId": "readStorageNineChV1alpha1NamespacedBucketUser", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "replace the specified BucketUser", "operationId": "replaceStorageNineChV1alpha1NamespacedBucketUser", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "delete a BucketUser", "operationId": "deleteStorageNineChV1alpha1NamespacedBucketUser", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "BucketUser" ], "summary": "partially update the specified BucketUser", "operationId": "patchStorageNineChV1alpha1NamespacedBucketUser", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the BucketUser", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/keyvaluestores": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "list objects of kind KeyValueStore", "operationId": "listStorageNineChV1alpha1NamespacedKeyValueStore", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStoreList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "create a KeyValueStore", "operationId": "createStorageNineChV1alpha1NamespacedKeyValueStore", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "delete collection of KeyValueStore", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedKeyValueStore", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/keyvaluestores/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "read the specified KeyValueStore", "operationId": "readStorageNineChV1alpha1NamespacedKeyValueStore", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "replace the specified KeyValueStore", "operationId": "replaceStorageNineChV1alpha1NamespacedKeyValueStore", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "delete a KeyValueStore", "operationId": "deleteStorageNineChV1alpha1NamespacedKeyValueStore", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "KeyValueStore" ], "summary": "partially update the specified KeyValueStore", "operationId": "patchStorageNineChV1alpha1NamespacedKeyValueStore", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the KeyValueStore", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/mysqls": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "list objects of kind MySQL", "operationId": "listStorageNineChV1alpha1NamespacedMySQL", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQLList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "create a MySQL", "operationId": "createStorageNineChV1alpha1NamespacedMySQL", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "delete collection of MySQL", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedMySQL", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/mysqls/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "read the specified MySQL", "operationId": "readStorageNineChV1alpha1NamespacedMySQL", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "replace the specified MySQL", "operationId": "replaceStorageNineChV1alpha1NamespacedMySQL", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "delete a MySQL", "operationId": "deleteStorageNineChV1alpha1NamespacedMySQL", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "MySQL" ], "summary": "partially update the specified MySQL", "operationId": "patchStorageNineChV1alpha1NamespacedMySQL", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the MySQL", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/objectsbuckets": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "list objects of kind ObjectsBucket", "operationId": "listStorageNineChV1alpha1NamespacedObjectsBucket", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucketList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "create an ObjectsBucket", "operationId": "createStorageNineChV1alpha1NamespacedObjectsBucket", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "delete collection of ObjectsBucket", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedObjectsBucket", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/objectsbuckets/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "read the specified ObjectsBucket", "operationId": "readStorageNineChV1alpha1NamespacedObjectsBucket", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "replace the specified ObjectsBucket", "operationId": "replaceStorageNineChV1alpha1NamespacedObjectsBucket", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "delete an ObjectsBucket", "operationId": "deleteStorageNineChV1alpha1NamespacedObjectsBucket", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "ObjectsBucket" ], "summary": "partially update the specified ObjectsBucket", "operationId": "patchStorageNineChV1alpha1NamespacedObjectsBucket", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the ObjectsBucket", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/postgres": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "list objects of kind Postgres", "operationId": "listStorageNineChV1alpha1NamespacedPostgres", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.PostgresList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "create Postgres", "operationId": "createStorageNineChV1alpha1NamespacedPostgres", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "delete collection of Postgres", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedPostgres", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/postgres/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "read the specified Postgres", "operationId": "readStorageNineChV1alpha1NamespacedPostgres", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "replace the specified Postgres", "operationId": "replaceStorageNineChV1alpha1NamespacedPostgres", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "delete Postgres", "operationId": "deleteStorageNineChV1alpha1NamespacedPostgres", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Postgres" ], "summary": "partially update the specified Postgres", "operationId": "patchStorageNineChV1alpha1NamespacedPostgres", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Postgres", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/registries": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "list objects of kind Registry", "operationId": "listStorageNineChV1alpha1NamespacedRegistry", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.RegistryList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "create a Registry", "operationId": "createStorageNineChV1alpha1NamespacedRegistry", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "delete collection of Registry", "operationId": "deleteStorageNineChV1alpha1CollectionNamespacedRegistry", "parameters": [ { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "allowWatchBookmarks", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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\".\n\nThis 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.", "name": "continue", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", "name": "fieldSelector", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", "name": "labelSelector", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe 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.", "name": "limit", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersionMatch", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", "name": "timeoutSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", "name": "watch", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "deletecollection", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] }, "/apis/storage.nine.ch/v1alpha1/namespaces/{namespace}/registries/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "read the specified Registry", "operationId": "readStorageNineChV1alpha1NamespacedRegistry", "parameters": [ { "uniqueItems": true, "type": "string", "description": "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.\n\nDefaults to unset", "name": "resourceVersion", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "replace the specified Registry", "operationId": "replaceStorageNineChV1alpha1NamespacedRegistry", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "delete a Registry", "operationId": "deleteStorageNineChV1alpha1NamespacedRegistry", "parameters": [ { "name": "body", "in": "body", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "integer", "description": "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.", "name": "gracePeriodSeconds", "in": "query" }, { "uniqueItems": true, "type": "boolean", "description": "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.", "name": "orphanDependents", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "propagationPolicy", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Status" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "delete", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "Registry" ], "summary": "partially update the specified Registry", "operationId": "patchStorageNineChV1alpha1NamespacedRegistry", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" } }, { "uniqueItems": true, "type": "string", "description": "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", "name": "dryRun", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "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.", "name": "fieldManager", "in": "query" }, { "uniqueItems": true, "type": "string", "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. 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 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - 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 when the `ServerSideFieldValidation` feature gate is enabled. - 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.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the Registry", "name": "name", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "object name and auth scope, such as for teams and projects", "name": "namespace", "in": "path", "required": true }, { "uniqueItems": true, "type": "string", "description": "If 'true', then the output is pretty printed.", "name": "pretty", "in": "query" } ] } }, "definitions": { "ch.nine.apps.v1alpha1.Application": { "description": "Application takes source code as the input and fully builds and deploys the application.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An ApplicationSpec defines the desired state of an Application.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "ApplicationParameters are the configurable fields of a Application.", "type": "object", "required": [ "config", "git" ], "properties": { "buildEnv": { "description": "Env variables which are passed to configure env variables required during the build process.", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "config": { "description": "Config contains all parameters configuring the deployment of an Application.", "type": "object", "properties": { "deployJob": { "description": "DeployJob defines a command which is executed before a new release gets deployed. The deployment will only continue if the job finished successfully.", "required": [ "command", "name" ] }, "enableBasicAuth": { "description": "EnableBasicAuth enables basic authentication for the application" }, "env": { "description": "Env variables which are passed to the app at runtime.", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "port": { "description": "Port the app is listening on.", "format": "int32" }, "replicas": { "description": "Replicas sets the amount of replicas of the running app. If this is increased, make sure your application can cope with running multiple replicas and all state required is shared in some way.", "format": "int32" }, "size": { "description": "ApplicationSize defines the size of an application and the resources that will be allocated for it.", "type": "string", "enum": [ "", "micro", "mini", "standard-1", "standard-2" ] } } }, "git": { "description": "ApplicationGitConfig configures the git repo to connect to.", "type": "object", "required": [ "revision", "url" ], "properties": { "auth": { "description": "Auth configures the authentication to a secured git repository. Can be omitted for publicly accessible git repositories.", "type": "object", "properties": { "fromSecret": { "description": "FromSecret is a reference to a Secret to read the credentials from instead of using the inline fields. Should contain the following keys depending on the protocol used. \n HTTPS: data: username: \u003cusername\u003e password: \u003cpassword\u003e SSH: data: privatekey: \u003cpem-private-key\u003e", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "password": { "description": "Password is the password to use when connecting to the git repository over HTTPS. In case of GitHub or GitLab, this can also be an access token.", "type": "string" }, "sshPrivateKey": { "description": "SSHPrivateKey is a private key in PEM format to connect to the git repository via SSH.", "type": "string" }, "username": { "description": "Username is the username to use when connecting to the git repository over HTTPS.", "type": "string" } } }, "revision": { "description": "Revision defines the revision of the source to deploy the application to. This can be a commit, tag, or branch.", "type": "string", "minLength": 1 }, "subPath": { "description": "SubPath is a path in the git repo which contains the application code. If not given, the root directory of the git repo will be used. The SubPath field needs to start with a letter.", "type": "string" }, "url": { "description": "URL is the URL to the Git repository containing the application source. Both HTTPS and SSH formats are supported.", "type": "string", "minLength": 1 } } }, "hosts": { "description": "Hosts is a list of host names where the application can be accessed. If empty, the application will just be accessible on a generated host name on the deploio.app domain.", "type": "array", "items": { "type": "string" } }, "language": { "description": "Language specifies which kind of application/language should be used for building the application. If left empty, an automatic detection will be run.", "type": "string", "enum": [ "", "ruby", "php", "python", "golang", "nodejs", "static" ] } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An ApplicationStatus represents the observed state of an Application.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "ApplicationObservation are the observable fields of an Application.", "type": "object", "properties": { "basicAuthSecret": { "description": "BasicAuthSecret references the secret which contains the basic auth credentials", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "cnameTarget": { "description": "CNAMETarget specifies to which DNS entry all custom hosts should point to (via a CNAME entry)", "type": "string" }, "customHostsCertificateStatus": { "description": "CustomHostsCertificateStatus represents the latest Certificate status for the defined custom hosts.", "type": "string" }, "defaultHostsCertificateStatus": { "description": "DefaultHostsCertificateStatus represents the latest Certificate status for the default URLs where the app is available.", "type": "string" }, "defaultURLs": { "description": "DefaultURLs are the URLs at which the application is avalilable.", "type": "array", "items": { "type": "string" } }, "hosts": { "description": "Hosts represents the latest status of the verification of each custom host.", "type": "array", "items": { "type": "object", "required": [ "name" ], "properties": { "checkType": { "description": "CheckType describes which kind of DNS check this entry is about (CNAME or TXT)", "type": "string" }, "error": { "description": "Error displays a potential error which happened during the verification", "type": "object", "required": [ "message", "timestamp" ], "properties": { "message": { "description": "Message refers to the error message", "type": "string" }, "timestamp": { "description": "Timestamp refers to the time when this error happened", "type": "string", "format": "date-time" } } }, "latestSuccess": { "description": "LatestSuccess specifies when this host was last verified successfully", "type": "string", "format": "date-time" }, "name": { "description": "the hostname of the verification entry", "type": "string" } } } }, "latestBuild": { "description": "LatestBuild shows the latest build for this application", "type": "string" }, "latestRelease": { "description": "LatestRelease shows the latest release for this application", "type": "string" }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } }, "replicas": { "description": "Replicas shows the effective amount of replicas which are currently deployed", "type": "integer", "format": "int32" }, "size": { "description": "Size shows the effective application size which is currently in use", "type": "string", "enum": [ "", "micro", "mini", "standard-1", "standard-2" ] }, "txtRecordContent": { "description": "TXTRecordContent specifies the content of the DNS TXT record which will be used for host validation", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "Application", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.ApplicationList": { "description": "ApplicationList is a list of Application", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of applications. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Application" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "ApplicationList", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.Build": { "description": "A Build represents an OCI image build of some referenced source code", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A BuildSpec defines the desired state of an Build.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "BuildParameters define the desired state of a build", "type": "object", "required": [ "buildReference", "image", "sourceConfig" ], "properties": { "buildReference": { "description": "BuildReference references the original build resource", "type": "object", "required": [ "build", "cluster" ], "properties": { "build": { "description": "Build references the original build resource on the cluster of the build", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "cluster": { "description": "Cluster references the cluster of the build", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } }, "config": { "description": "Config contains deployment related config", "type": "object", "properties": { "deployJob": { "description": "DeployJob defines a command which is executed before a new release gets deployed. The deployment will only continue if the job finished successfully.", "required": [ "command", "name" ] }, "enableBasicAuth": { "description": "EnableBasicAuth enables basic authentication for the application" }, "env": { "description": "Env variables which are passed to the app at runtime.", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "port": { "description": "Port the app is listening on.", "format": "int32" }, "replicas": { "description": "Replicas sets the amount of replicas of the running app. If this is increased, make sure your application can cope with running multiple replicas and all state required is shared in some way.", "format": "int32" }, "size": { "description": "ApplicationSize defines the size of an application and the resources that will be allocated for it.", "type": "string", "enum": [ "", "micro", "mini", "standard-1", "standard-2" ] } } }, "env": { "description": "Env variables used at the build time", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "image": { "description": "Images defines the image spec of the final built image", "type": "object", "properties": { "digest": { "description": "Digest specifies the image digest to use", "type": "string" }, "pullPolicy": { "description": "PullPolicy specifies the image pull policy to use", "type": "string" }, "pullSecret": { "description": "PullSecret specifies a image pull secret name", "type": "string" }, "registry": { "description": "Registry specifies the registry from where the image should be pulled", "type": "string" }, "repository": { "description": "Repository specifies the repository from where the image should be pulled", "type": "string" }, "tag": { "description": "Tag specifies the image tag to use", "type": "string" } } }, "sourceConfig": { "description": "SourceConfig refers to the source of the build", "type": "object", "required": [ "git" ], "properties": { "git": { "description": "Git specifies a target git repo with a revision to use", "type": "object", "required": [ "revision", "url" ], "properties": { "revision": { "description": "Revision defines the revision of the source to deploy the application to. This can be a commit, tag, or branch.", "type": "string", "minLength": 1 }, "subPath": { "description": "SubPath is a path in the git repo which contains the application code. If not given, the root directory of the git repo will be used. The SubPath field needs to start with a letter.", "type": "string" }, "url": { "description": "URL is the URL to the Git repository containing the application source. Both HTTPS and SSH formats are supported.", "type": "string", "minLength": 1 } } } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An BuildStatus represents the observed state of an Build.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "BuildObservation are the observable fields of a Build.", "type": "object", "properties": { "buildMetadata": { "description": "BuildMetadata describes the list of buildpack binaries that were used in the build phase", "type": "array", "items": { "description": "BuildpackMetadata describes the binary that was used in the build phase. Copied from https://github.com/buildpacks-community/kpack/blob/v0.10.0/pkg/apis/core/v1alpha1/buildpack_metadata.go", "type": "object", "required": [ "id", "version" ], "properties": { "homepage": { "type": "string" }, "id": { "type": "string" }, "version": { "type": "string" } } } }, "buildStatus": { "description": "Status describes the status of the build", "type": "string" }, "stepsCompleted": { "description": "StepsCompleted describes all the completed build steps", "type": "array", "items": { "type": "string" } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "Build", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.BuildList": { "description": "BuildList is a list of Build", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of builds. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Build" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "BuildList", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.ProjectConfig": { "description": "A ProjectConfig defines the default config of an application in a project.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An ProjectConfigSpec defines the desired state of a ProjectConfig.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "ProjectConfigParameters are the configurable fields of a ProjectConfig.", "type": "object", "required": [ "config" ], "properties": { "config": { "description": "Config contains all parameters configuring the deployment of an Application.", "type": "object", "properties": { "deployJob": { "description": "DeployJob defines a command which is executed before a new release gets deployed. The deployment will only continue if the job finished successfully.", "required": [ "command", "name" ] }, "enableBasicAuth": { "description": "EnableBasicAuth enables basic authentication for the application" }, "env": { "description": "Env variables which are passed to the app at runtime.", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "port": { "description": "Port the app is listening on.", "format": "int32" }, "replicas": { "description": "Replicas sets the amount of replicas of the running app. If this is increased, make sure your application can cope with running multiple replicas and all state required is shared in some way.", "format": "int32" }, "size": { "description": "ApplicationSize defines the size of an application and the resources that will be allocated for it.", "type": "string", "enum": [ "", "micro", "mini", "standard-1", "standard-2" ] } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An ProjectConfigStatus represents the observed state of a ProjectConfig.", "type": "object", "properties": { "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "ProjectConfig", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.ProjectConfigList": { "description": "ProjectConfigList is a list of ProjectConfig", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of projectconfigs. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.ProjectConfig" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "ProjectConfigList", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.Release": { "description": "A Release is created from a \"successful\" Build. It contains all the information needed to deploy the application.", "type": "object", "required": [ "creationTimestampNano", "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "creationTimestampNano": { "description": "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.", "type": "integer", "format": "int64" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A ReleaseSpec defines the desired Release state", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "ReleaseParameters define the desired Release state", "type": "object", "required": [ "build", "config", "image" ], "properties": { "basicAuthSecret": { "description": "BasicAuthSecret references a local secret which contains the basic auth credentials", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "build": { "description": "Build references the Build resource, that is the Release source.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "config": { "description": "Config contains all configurations from the various configuration sources (project level, application level, etc) merged into one.", "type": "object", "properties": { "deployJob": { "description": "DeployJob defines a command which is executed before a new release gets deployed. The deployment will only continue if the job finished successfully.", "required": [ "command", "name" ] }, "enableBasicAuth": { "description": "EnableBasicAuth enables basic authentication for the application" }, "env": { "description": "Env variables which are passed to the app at runtime.", "type": "array", "items": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "port": { "description": "Port the app is listening on.", "format": "int32" }, "replicas": { "description": "Replicas sets the amount of replicas of the running app. If this is increased, make sure your application can cope with running multiple replicas and all state required is shared in some way.", "format": "int32" }, "size": { "description": "ApplicationSize defines the size of an application and the resources that will be allocated for it.", "type": "string", "enum": [ "", "micro", "mini", "standard-1", "standard-2" ] } } }, "configuration": { "description": "Configuration contains all configurations from the various configuration sources (project level, application level, etc) merged into one.", "type": "object", "properties": { "deployJob": { "type": "object", "required": [ "origin", "value" ], "properties": { "origin": { "description": "ConfigOrigin describes the origin of a config", "type": "string" }, "value": { "description": "DeployJob defines a command which is executed before a new release gets deployed. The deployment will only continue if the job finished successfully.", "type": "object", "required": [ "command", "name" ], "properties": { "command": { "description": "Command to execute. This command will be executed by a bash shell which gets started by the cloud native buildpacks launcher binary.", "type": "string" }, "name": { "description": "Name of the Job.", "type": "string" }, "retries": { "description": "Retries defines how many times the job will be restarted on failure.", "type": "integer", "format": "int32" }, "timeout": { "description": "Timeout of the job. Minimum is 1 minute and maximum is 30 minutes.", "type": "string", "format": "duration" } } } } }, "enableBasicAuth": { "description": "EnableBasicAuth enables basic authentication for the application", "type": "object", "required": [ "origin", "value" ], "properties": { "origin": { "description": "ConfigOrigin describes the origin of a config", "type": "string" }, "value": { "type": "boolean" } } }, "env": { "description": "Env variables which are passed to the app at runtime.", "type": "array", "items": { "type": "object", "required": [ "origin", "value" ], "properties": { "origin": { "description": "ConfigOrigin describes the origin of a config", "type": "string" }, "value": { "type": "object", "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } } } }, "port": { "description": "Port the app is listening on.", "type": "object", "required": [ "origin", "value" ], "properties": { "origin": { "description": "ConfigOrigin describes the origin of a config", "type": "string" }, "value": { "type": "integer", "format": "int32" } } }, "replicas": { "description": "Replicas sets the amount of replicas of the running app.", "type": "object", "required": [ "origin", "value" ], "properties": { "origin": { "description": "ConfigOrigin describes the origin of a config", "type": "string" }, "value": { "type": "integer", "format": "int32" } } }, "size": { "description": "Size describes the CPU and memory requirements of the application", "type": "object", "required": [ "origin" ], "properties": { "origin": { "description": "ConfigOrigin describes the origin of a config", "type": "string" }, "value": { "description": "ApplicationSize defines the size of an application and the resources that will be allocated for it.", "type": "string", "enum": [ "", "micro", "mini", "standard-1", "standard-2" ] } } } } }, "defaultHosts": { "description": "DefaultHosts are the URLs at which the application is available.", "type": "array", "items": { "type": "string" } }, "image": { "description": "Image defines the image spec of the built image", "type": "object", "properties": { "digest": { "description": "Digest specifies the image digest to use", "type": "string" }, "pullPolicy": { "description": "PullPolicy specifies the image pull policy to use", "type": "string" }, "pullSecret": { "description": "PullSecret specifies a image pull secret name", "type": "string" }, "registry": { "description": "Registry specifies the registry from where the image should be pulled", "type": "string" }, "repository": { "description": "Repository specifies the repository from where the image should be pulled", "type": "string" }, "tag": { "description": "Tag specifies the image tag to use", "type": "string" } } }, "timeout": { "description": "Timeout of the release after it will be considered failed. This does not include the time spent waiting for the deploy job and only concerns the release rollout.", "type": "string" }, "verifiedHosts": { "description": "VerifiedHosts are the custom hosts which have been verified and can be used in the release", "type": "array", "items": { "type": "string" } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An ReleaseStatus represents the observed Release state", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "ReleaseObservation are the observable fields of a Release", "type": "object", "properties": { "customHostsCertificateStatus": { "description": "CustomHostsCertificateStatus represents the latest Certificate status for the custom hosts where the app is available.", "type": "string" }, "deployJobStatus": { "description": "DeployJobStatus describes the status of the deploy job of a release", "type": "object", "required": [ "name", "status" ], "properties": { "exitTime": { "description": "ExitTime is the timestamp the job has exited.", "type": "string", "format": "date-time" }, "name": { "description": "Name of the deploy job.", "type": "string" }, "reason": { "description": "Reason indicates the failure reason in case of a failure.", "type": "string" }, "startTime": { "description": "StartTime is the timestamp the job has started.", "type": "string", "format": "date-time" }, "status": { "description": "Status indicates the status of the deploy job.", "type": "string" } } }, "releaseStatus": { "description": "ReleaseStatus describes the status of the Release", "type": "string" }, "replicaObservation": { "description": "ReplicaObservation shows details about all replicas of the release", "type": "array", "items": { "description": "ReplicaObservation describes a replica", "type": "object", "properties": { "lastExitCode": { "description": "LastExitCode shows the last exit code of the replica.", "type": "integer", "format": "int32" }, "restartCount": { "description": "RestartCount indicates how often the replica was already restarted.", "type": "integer", "format": "int32" }, "status": { "description": "Status describes the status of the replica.", "type": "string" } } } }, "replicas": { "description": "Replicas describes the amount of rolled out replicas, ie. for the underlying Deployment, it shows number of non-terminated pods targeted by this Release.", "type": "integer", "format": "int32" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "Release", "version": "v1alpha1" } ] }, "ch.nine.apps.v1alpha1.ReleaseList": { "description": "ReleaseList is a list of Release", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of releases. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.apps.v1alpha1.Release" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "apps.nine.ch", "kind": "ReleaseList", "version": "v1alpha1" } ] }, "ch.nine.devtools.v1alpha1.ArgoCD": { "description": "ArgoCD deploys a fully managed Argo CD instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An ArgoCDSpec defines the desired state of a ArgoCD.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "ArgoCDParameters are the configurable fields of a ArgoCD.", "type": "object", "required": [ "clusters" ], "properties": { "clusters": { "description": "Clusters that Argo CD has access to.", "type": "array", "minItems": 1, "items": { "description": "Reference references another object in a specific namespace.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } }, "customSecret": { "description": "CustomSecrets allows to pass secrets to ArgoCD which can then be used (e.g. in ApplicationSets)", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "enableApplicationSets": { "description": "EnableApplicationSets specifies if Argo CD should support ApplicationSet CRDs", "type": "boolean" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An ArgoCDStatus represents the observed state of a ArgoCD.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "ArgoCDObservation are the observable fields of a ArgoCD.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "cliURL": { "description": "CLIURL points to the URL used for logging into the CLI.", "type": "string" }, "clusterConnectionError": { "description": "ClusterConnectionError is an error that occurs if any of the references point to a cluster that does not exist.", "type": "string" }, "customSecret": { "description": "CustomSecret is the name of the secret which can be used in ArgoCD (e.g. in ApplicationSets). It contains the same keys as the referenced custom secret.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } }, "url": { "description": "URL points to the web UI of Argo CD.", "type": "string" }, "webhooks": { "description": "Webhooks outputs the URLs for configured webhooks", "type": "object", "properties": { "applicationSet": { "description": "ApplicationSet specifies the special application set webhook used to notify the ArgoCD ApplicationSet generators about changes in git", "type": "string" }, "argoCD": { "description": "ArgoCD specifies the default webhook used to notify ArgoCD about git repository changes", "type": "string" } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "devtools.nine.ch", "kind": "ArgoCD", "version": "v1alpha1" } ], "example": { "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": {} } } }, "ch.nine.devtools.v1alpha1.ArgoCDList": { "description": "ArgoCDList is a list of ArgoCD", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of argocds. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.devtools.v1alpha1.ArgoCD" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "devtools.nine.ch", "kind": "ArgoCDList", "version": "v1alpha1" } ] }, "ch.nine.iam.v1alpha1.APIServiceAccount": { "description": "APIServiceAccount is a service account to access the API.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "APIServiceAccountSpec defines the desired state of a APIServiceAccount.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "APIServiceAccountParameters are the configurable fields of an APIServiceAccount.", "type": "object", "properties": { "role": { "description": "A predefined Role the service account will get.", "type": "string", "enum": [ "admin", "viewer" ] } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "APIServiceAccountStatus represents the observed state of a APIServiceAccount.", "type": "object", "properties": { "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "iam.nine.ch", "kind": "APIServiceAccount", "version": "v1alpha1" } ] }, "ch.nine.iam.v1alpha1.APIServiceAccountList": { "description": "APIServiceAccountList is a list of APIServiceAccount", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of apiserviceaccounts. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.APIServiceAccount" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "iam.nine.ch", "kind": "APIServiceAccountList", "version": "v1alpha1" } ] }, "ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding": { "description": "KubernetesClustersRoleBinding binds a role to subjects and KubernetesClusters.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "KubernetesClustersRoleBindingSpec defines the desired state of a KubernetesClustersRoleBinding.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "KubernetesClustersRoleBindingParameters are the parameters of a KubernetesClustersRoleBinding.", "type": "object", "required": [ "clusters", "subjects" ], "properties": { "clusters": { "description": "Clusters references the KubernetesClusters to which the subjects will be given access to.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } }, "role": { "description": "Role defines the role that the subjects will be given on the specified clusters.", "type": "string", "enum": [ "admin", "viewer", "user", "argocd", "nine-admin", "nine-viewer" ] }, "subjects": { "description": "Subjects define who gets access to the specified clusters.", "type": "array", "items": { "type": "object", "required": [ "kind", "name" ], "properties": { "kind": { "description": "Kind of the object being referenced.", "type": "string", "enum": [ "User", "Group", "ServiceAccount" ] }, "name": { "description": "Name of the target.", "type": "string" } } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "KubernetesClustersRoleBindingStatus represents the observed state of a KubernetesClustersRoleBinding.", "type": "object", "properties": { "atProvider": { "type": "object", "properties": { "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBinding", "version": "v1alpha1" } ], "example": { "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": {} } } }, "ch.nine.iam.v1alpha1.KubernetesClustersRoleBindingList": { "description": "KubernetesClustersRoleBindingList is a list of KubernetesClustersRoleBinding", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of kubernetesclustersrolebindings. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesClustersRoleBinding" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "iam.nine.ch", "kind": "KubernetesClustersRoleBindingList", "version": "v1alpha1" } ] }, "ch.nine.iam.v1alpha1.KubernetesServiceAccount": { "description": "KubernetesServiceAccount is a service account to access a KubernetesCluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "KubernetesServiceAccountSpec defines the desired state of a KubernetesServiceAccount.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "KubernetesServiceAccountParameters are the parameters of a KubernetesServiceAccount.", "type": "object", "required": [ "cluster" ], "properties": { "cluster": { "description": "Cluster references the KubernetesCluster to which the service account will be scoped to.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "KubernetesServiceAccountStatus represents the observed state of a KubernetesServiceAccount.", "type": "object", "properties": { "atProvider": { "description": "KubernetesServiceAccountObservation are the observable fields of a KubernetesServiceAccount.", "type": "object", "properties": { "fullName": { "description": "FullName is the full username of the service account on the cluster.", "type": "string" }, "name": { "description": "Name of the service account on the cluster.", "type": "string" }, "namespace": { "description": "Namespace of the service account on the cluster.", "type": "string" }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "iam.nine.ch", "kind": "KubernetesServiceAccount", "version": "v1alpha1" } ], "example": { "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": {} } } }, "ch.nine.iam.v1alpha1.KubernetesServiceAccountList": { "description": "KubernetesServiceAccountList is a list of KubernetesServiceAccount", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of kubernetesserviceaccounts. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.iam.v1alpha1.KubernetesServiceAccount" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "iam.nine.ch", "kind": "KubernetesServiceAccountList", "version": "v1alpha1" } ] }, "ch.nine.infrastructure.v1alpha1.Keda": { "description": "Keda deploys Keda to a KubernetesCluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A KedaSpec defines the desired state of a Keda instance.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "KedaParameters are the configurable fields of a Keda instance.", "type": "object", "required": [ "cluster" ], "properties": { "cluster": { "description": "Cluster is the cluster where the keda should be deployed to.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A KedaStatus represents the observed state of a Keda instance.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "KedaObservation are the observable fields of a Keda instance.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "infrastructure.nine.ch", "kind": "Keda", "version": "v1alpha1" } ] }, "ch.nine.infrastructure.v1alpha1.KedaList": { "description": "KedaList is a list of Keda", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of kedas. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.Keda" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "infrastructure.nine.ch", "kind": "KedaList", "version": "v1alpha1" } ] }, "ch.nine.infrastructure.v1alpha1.KubernetesCluster": { "description": "KubernetesCluster is a fully managed Kubernetes cluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A KubernetesClusterSpec defines the desired state of a KubernetesCluster.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "KubernetesClusterParameters are the configurable fields of a KubernetesCluster.", "type": "object", "required": [ "location", "nodePools" ], "properties": { "additionalBackupSchedules": { "description": "AdditionalBackupSchedules allows custom backup schedules to be setup. The daily full cluster backup won't be affected by this.", "type": "array", "maxItems": 3, "items": { "description": "VeleroSchedule defines a Velero backup schedule.", "type": "object", "required": [ "cronExpression", "name", "spec" ], "properties": { "cronExpression": { "description": "CronExpression is a POSIX cron expression defining when to run the backup. For example every night at 3 am UTC: \"0 3 * * *\". Note that it does not allow to configure a backup to run every minute, meaning the first term of the expression (minute) has to be a number.", "type": "string", "pattern": "^(\\d+)(\\d+)?(\\s+(\\d+|\\*)(\\d+)?){4}$" }, "name": { "description": "Name of the backup schedule", "type": "string" }, "spec": { "description": "Spec defines what to back up and how long to retain it", "type": "object", "properties": { "csiSnapshotTimeout": { "description": "CSISnapshotTimeout specifies the time used to wait for CSI VolumeSnapshot status turns to ReadyToUse during creation, before returning error as timeout. The default value is 10 minute.", "type": "string" }, "defaultVolumesToFsBackup": { "description": "DefaultVolumesToFsBackup specifies whether pod volume file system backup should be used for all volumes by default." }, "defaultVolumesToRestic": { "description": "DefaultVolumesToRestic specifies whether restic should be used to take a backup of all pod volumes by default. \n Deprecated: this field is no longer used and will be removed entirely in future. Use DefaultVolumesToFsBackup instead." }, "excludedNamespaces": { "description": "ExcludedNamespaces contains a list of namespaces that are not included in the backup." }, "excludedResources": { "description": "ExcludedResources is a slice of resource names that are not included in the backup." }, "hooks": { "description": "Hooks represent custom behaviors that should be executed at different phases of the backup.", "type": "object", "properties": { "resources": { "description": "Resources are hooks that should be executed when backing up individual instances of a resource." } } }, "includeClusterResources": { "description": "IncludeClusterResources specifies whether cluster-scoped resources should be included for consideration in the backup." }, "includedNamespaces": { "description": "IncludedNamespaces is a slice of namespace names to include objects from. If empty, all namespaces are included." }, "includedResources": { "description": "IncludedResources is a slice of resource names to include in the backup. If empty, all resources are included." }, "labelSelector": { "description": "LabelSelector is a metav1.LabelSelector to filter with when adding individual objects to the backup. If empty or nil, all objects are included. Optional.", "x-kubernetes-map-type": "atomic" }, "metadata": { "type": "object", "properties": { "labels": { "type": "object", "additionalProperties": { "type": "string" } } } }, "orLabelSelectors": { "description": "OrLabelSelectors is list of metav1.LabelSelector to filter with when adding individual objects to the backup. If multiple provided they will be joined by the OR operator. LabelSelector as well as OrLabelSelectors cannot co-exist in backup request, only one of them can be used." }, "orderedResources": { "description": "OrderedResources specifies the backup order of resources of specific Kind. The map key is the resource name and value is a list of object names separated by commas. Each resource name has format \"namespace/objectname\". For cluster resources, simply use \"objectname\".", "additionalProperties": { "type": "string" } }, "snapshotVolumes": { "description": "SnapshotVolumes specifies whether to take cloud snapshots of any PV's referenced in the set of objects included in the Backup." }, "storageLocation": { "description": "StorageLocation is a string containing the name of a BackupStorageLocation where the backup should be stored.", "type": "string" }, "ttl": { "description": "TTL is a time.Duration-parseable string describing how long the Backup should be retained for.", "type": "string" }, "volumeSnapshotLocations": { "description": "VolumeSnapshotLocations is a list containing names of VolumeSnapshotLocations associated with this backup.", "type": "array", "items": { "type": "string" } } } } } } }, "location": { "description": "Location of the KubernetesCluster. Note that Clusters are currently only available in the location nine-es34.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "nke": { "description": "NKE represents a KubernetesCluster in Nine's datacentres.", "type": "object", "properties": { "staticEgress": { "description": "StaticEgress defines settings for the static egress feature", "type": "object", "properties": { "enabled": { "description": "Enabled defines if the static egress feature should be enabled or disabled", "type": "boolean" } } } } }, "nodePools": { "type": "array", "items": { "description": "NodePool configures a pool of nodes which are added to the cluster.", "type": "object", "required": [ "machineType", "maxNodes", "minNodes", "name" ], "properties": { "annotations": { "description": "Annotations specifies the node annotations. Changing this results in a new rollout of all nodes in the pool.", "type": "object", "additionalProperties": { "type": "string" } }, "diskSize": { "description": "DiskSize specifies the size of the disk for the nodes in this pool. Changing this results in a new rollout of all nodes in the pool. Allowed range is 20Gi - 100Gi.", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true }, "labels": { "description": "Labels specifies the node labels. Changing this results in a new rollout of all nodes in the pool.", "type": "object", "additionalProperties": { "type": "string" } }, "machineType": { "description": "MachineType identifies the machine sizing. Changing this results in a new rollout of all nodes in the pool.", "type": "string", "enum": [ "nine-standard-1", "nine-standard-2", "nine-standard-4", "nine-highmem-2", "nine-highmem-4", "nine-highcpu-2", "nine-highcpu-4", "nine-highcpu-8", "nine-highcpu-16" ] }, "maxNodes": { "description": "MinNodes describes the upper bound of nodes in this pool. If MinNodes == MaxNodes, autoscaling is disabled.", "type": "integer", "minimum": 1 }, "minNodes": { "description": "MinNodes describes the lower bound of nodes in this pool. If MinNodes == MaxNodes, autoscaling is disabled.", "type": "integer", "minimum": 0 }, "name": { "description": "Name of the node pool. Changing this results in a new rollout of all nodes in the pool.", "type": "string" }, "taints": { "description": "Taints specifies the node taints. Changing this results in a new rollout of all nodes in the pool.", "type": "array", "items": { "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.", "type": "object", "required": [ "effect", "key" ], "properties": { "effect": { "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Required. The taint key to be applied to a node.", "type": "string" }, "timeAdded": { "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.", "type": "string", "format": "date-time" }, "value": { "description": "The taint value corresponding to the taint key.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "scrapeConfiguration": { "description": "ScrapeConfigurations allows to overwrite which metrics of this cluster are scraped by certain Prometheus instances", "type": "object", "properties": { "certManager": { "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "kubeStateMetrics": { "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "kubelet": { "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "kubeletCAdvisor": { "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "nodeExporter": { "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "velero": { "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" } } }, "vcluster": { "description": "VCluster is a virtual KubernetesCluster running on top of NKE. Experimental and should only be used for development and testing.", "type": "object", "properties": { "certManager": { "description": "CertManager enables cert-manager on the vcluster. Currently just Certificate resources are supported.", "type": "boolean" }, "version": { "description": "Version specifies the Kubernetes version that will be used for this cluster, e.g. \"1.26\". The patch version cannot be specified and the latest supported one will be used.", "type": "string", "enum": [ "1.25", "1.26", "1.27", "1.28", "1.29" ], "x-kubernetes-validations": [ { "message": "downgrade is not allowed", "rule": "double(self) \u003e= double(oldSelf)" }, { "message": "only one minor upgrade is allowed", "rule": "double(self) - double(oldSelf) \u003c 0.02" } ] } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A KubernetesClusterStatus represents the observed state of a KubernetesCluster.", "type": "object", "properties": { "atProvider": { "description": "KubernetesClusterObservation are the observable fields of a KubernetesCluster.", "type": "object", "properties": { "apiCACert": { "description": "APICACert is the base64 encoded ca certificate of the kube-apiserver", "type": "string" }, "apiEndpoint": { "description": "APIEndpoint is the URL under which the Kubernetes API is reachable at.", "type": "string" }, "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "kubernetesVersion": { "description": "KubernetesVersion represents the version of Kubernetes that this cluster is running at.", "type": "string" }, "nodePools": { "description": "NodePools lists the name of the node pools plus their associated status.", "type": "object", "additionalProperties": { "type": "object", "required": [ "numNodes" ], "properties": { "diskSize": { "description": "DiskSize shows the current disk size of the node pool.", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true }, "machineType": { "description": "MachineType shows the current machine type of the node pool.", "type": "string" }, "numNodes": { "description": "NumNodes describes the current number of nodes in the node pool.", "type": "integer" } } } }, "oidcClientID": { "description": "OIDCClientID is the client ID for the OIDC login flow to this cluster.", "type": "string" }, "oidcIssuerURL": { "description": "OIDCIssuerURL is the issuer URL for the OIDC login flow to this cluster.", "type": "string" }, "vcluster": { "description": "VCluster exposes vcluster specific status fields.", "type": "object", "required": [ "defaultIngress" ], "properties": { "defaultIngress": { "description": "DefaultIngress that Ingress objects within the vcluster can use.", "type": "object", "required": [ "class", "host" ], "properties": { "class": { "description": "Class is the name of the IngressClass that can be referenced within an Ingress resource.", "type": "string" }, "host": { "description": "Host is the fully qualified hostname that points to the Ingress Loadbalancer.", "type": "string" } } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "infrastructure.nine.ch", "kind": "KubernetesCluster", "version": "v1alpha1" } ], "example": { "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 } }, "nodePools": [ { "name": "production", "minNodes": 3, "maxNodes": 3, "machineType": "nine-standard-2" } ] } }, "status": { "atProvider": {} } } }, "ch.nine.infrastructure.v1alpha1.KubernetesClusterList": { "description": "KubernetesClusterList is a list of KubernetesCluster", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of kubernetesclusters. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.KubernetesCluster" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "infrastructure.nine.ch", "kind": "KubernetesClusterList", "version": "v1alpha1" } ] }, "ch.nine.management.v1alpha1.Project": { "description": "A Project represents a project/environment of a organization.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A ProjectSpec defines the desired state of a Project.", "type": "object", "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "displayName": { "description": "DisplayName is the name that, if specified, is displayed in the UI. DisplayName is a user-friendly Project name. DisplayName is not unique. DisplayName may differ from the Project name.", "type": "string" }, "isNonProduction": { "description": "IsNonProduction declares this project as containing no productive resources (dev, test, staging environment). Resources in this project will then be upgraded before resources in production projects.", "type": "boolean" }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A ProjectStatus represents the observed state of a Project.", "type": "object", "properties": { "atProvider": { "description": "ProjectObservation are the observable fields of an Project.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "management.nine.ch", "kind": "Project", "version": "v1alpha1" } ] }, "ch.nine.management.v1alpha1.ProjectList": { "description": "ProjectList is a list of Project", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of projects. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.management.v1alpha1.Project" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "management.nine.ch", "kind": "ProjectList", "version": "v1alpha1" } ] }, "ch.nine.networking.v1alpha1.IngressNginx": { "description": "IngressNginx deploys an NGINX ingress controller to a cluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "IngressNginxSpec defines the desired state of an IngressNginx.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "IngressNginxParameters are the configurable fields of a IngressNginx.", "type": "object", "required": [ "cluster" ], "properties": { "annotationValueWordBlocklist": { "description": "AnnotationValueWordBlocklist is a list of comma seperated words which, if found in snippet annotations, will block the acceptance of the ingress resource. This allows to block nginx configuration stanzas which are potentially dangerous in a multitenant use case of the ingress controller while still allowing snippet annotations to be made. \n The suggested list of the ingress-nginx project is: \"load_module,lua_package,_by_lua,location,root,proxy_pass,serviceaccount,{,},',\\\"\" \n It is still recommended to disable snippet annotations in general (see disableSnippetAnnotations) when using this ingress-nginx in a multitenant scenario.", "type": "string" }, "appendToXForwardedFor": { "description": "AppendToXForwardedFor defines if the ingress should take the incoming X-Forwarded-For header and append IPs to it, instead of replacing the whole header. Do NOT use this option in combination with Cloudflare enabled as this will break client IP detection.", "type": "boolean" }, "cache": { "description": "Cache defines caching settings. If set, the cache will be enabled and use the default settings. If not set, the cache will not be enabled. Caching also needs to be enabled on the ingress resource by setting a server-snippet annotation like this: \n nginx.ingress.kubernetes.io/server-snippet: | proxy_cache mycache; proxy_cache_lock on; proxy_cache_valid any 60m; proxy_ignore_headers Cache-Control; add_header X-Cache-Status $upstream_cache_status;", "type": "object", "properties": { "key": { "description": "Key defines the key that is used to index the nginx cache.", "type": "string" } } }, "cloudflare": { "description": "Cloudflare defines the settings for having Cloudflare as a CDN in front of this Ingress Controller. Do NOT use this option in combination with the `AppendToXForwardedFor` variable as this will break client IP detection. Disabled if not set.", "type": "object", "properties": { "ips": { "description": "IPs is a list of CIDRs which should contain all Cloudflare Networks.", "type": "array", "items": { "type": "string" } } } }, "cluster": { "description": "Cluster specifies on which cluster this IngressNginx should be installed.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "defaultBackend": { "description": "DefaultBackend sets the default backend that the ingress will proxy to if the request does not match any configured ingress route. If disabled, nginx will just return a generic 404 for such requests.", "type": "object", "properties": { "defaultBackendImage": { "description": "Image sets the image that is used for the backend pods. These are responsible for returning HTTP error pages in case of a failure in the service that an ingress resource points to.", "type": "object", "properties": { "digest": { "description": "Digest specifies the image digest to use", "type": "string" }, "pullPolicy": { "description": "PullPolicy specifies the image pull policy to use", "type": "string" }, "pullSecret": { "description": "PullSecret specifies a image pull secret name", "type": "string" }, "registry": { "description": "Registry specifies the registry from where the image should be pulled", "type": "string" }, "repository": { "description": "Repository specifies the repository from where the image should be pulled", "type": "string" }, "tag": { "description": "Tag specifies the image tag to use", "type": "string" } } }, "defaultBackendReplicas": { "description": "Replicas sets the number of replicas for the default backend.", "type": "integer" } } }, "disableSnippetAnnotations": { "description": "DisableSnippetAnnotations disables all \"*-snippet\" annotations (like \"configuration-snippet\" or \"server-snippet\") on ingress resources. These annotations are potentially dangerous in an environment where you do not trust all your users (multitenant environments). For example, it might allow to see the generated nginx.conf file.", "type": "boolean" }, "enableModSecurity": { "description": "EnableModSecurity enables the owasp-modsecurity. Note this will enable it for all paths, and each path must be disabled manually. ModSecurity will run in \"Detection-Only\" mode using the recommended configuration. You can enable the OWASP Core Rule Set by setting the following annotation: \n nginx.ingress.kubernetes.io/enable-owasp-core-rules: \"true\" \n https://github.com/kubernetes/ingress-nginx/blob/main/docs/user-guide/nginx-configuration/annotations.md#modsecurity", "type": "boolean" }, "ingressClass": { "description": "IngressClass sets the class of the ingress controller. Specifies which ingress objects the controller should take care of. Please note that the class `nginx` itself will handle all ingresses without a class annotation set.", "type": "string" }, "ipSharing": { "description": "IPSharing enables sharing the IP address of the ingress LB with an existing service type LoadBalancer. The reference should point to the service with which the LB IP should be shared. The referenced service has to have the annotation metallb.universe.tf/allow-shared-ip set and the ports 80 and 443 cannot be already in use.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "isDefaultIngressClass": { "description": "IsDefaultIngressClass specifies if the IngressClass of this controller should be the default IngressClass in the target cluster.", "type": "boolean" }, "scrapeConfigurations": { "description": "ScrapeConfigurations allows to overwrite which metrics of the ingress-nginx instance are scraped by certain Prometheus instances.", "type": "array", "items": { "description": "ScrapeConfig configures a metrics scrape config.", "type": "object", "required": [ "name" ], "properties": { "additionalMetrics": { "description": "AdditionalMetrics specifies which additional metrics should be scraped from this exporter", "type": "array", "items": { "type": "string" } }, "allMetrics": { "description": "AllMetrics specifies that all metrics of this specific component should be scraped", "type": "boolean" }, "enabled": { "description": "Enabled specifies if metrics of a corresponding exporter should be scraped by certain Prometheus instances", "type": "boolean" }, "name": { "description": "Name uniquely identifies an ExporterScrapeConfig.", "type": "string" }, "scrapedBy": { "description": "ScrapedBy defines which prometheus instances will target this scrape config.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } } }, "sslPassthrough": { "description": "SSLPassthrough flag enables the SSL Passthrough feature, which is disabled by default. This is required to enable passthrough backends in ingress objects. This feature is implemented by intercepting all traffic on the configured HTTPS port (default: 443) and handing it over to a local TCP proxy. This bypasses NGINX completely and introduces a non-negligible performance penalty.", "type": "boolean" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "IngressNginxStatus represents the observed state of an IngressNginx.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "IngressNginxObservation are the observable fields of an IngressNginx.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "dnsName": { "description": "DNSName is the name of the ingress A-Record, pointing to IPAddress.", "type": "string" }, "ipAddress": { "description": "IPAddress is the address where the ingress controller is reachable.", "type": "string" }, "ipSharingError": { "description": "IPSharingError indicates errors with the IPSharing configuration.", "type": "string" }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "networking.nine.ch", "kind": "IngressNginx", "version": "v1alpha1" } ], "example": { "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": {} } } }, "ch.nine.networking.v1alpha1.IngressNginxList": { "description": "IngressNginxList is a list of IngressNginx", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of ingressnginxes. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.IngressNginx" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "networking.nine.ch", "kind": "IngressNginxList", "version": "v1alpha1" } ] }, "ch.nine.observability.v1alpha1.Alertmanager": { "description": "Alertmanager deploys a fully managed Alertmanager instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "AlertmanagerSpec defines the desired state of an Alertmanager.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "AlertmanagerParameters are the configurable fields of an Alertmanager.", "type": "object", "properties": { "config": { "description": "Config is a yaml string containing the alertmanager configuration. Reference: https://www.prometheus.io/docs/alerting/latest/configuration/", "type": "string" }, "configFromSecret": { "description": "ConfigFromSecret specifies a secret name where the config is stored in. This is mutually exclusive with the \"Config\" field. Reference: https://www.prometheus.io/docs/alerting/latest/configuration/", "type": "object", "required": [ "key", "name" ], "properties": { "key": { "description": "Key describes the key within the secret.", "type": "string" }, "name": { "description": "Name of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "AlertmanagerStatus represents the observed state of an Alertmanager.", "type": "object", "properties": { "atProvider": { "description": "AlertmanagerObservation are the observable fields of an Alertmanager.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "config": { "description": "AlertmanagerConfigStatus contains information about the config status.", "type": "object", "properties": { "message": { "description": "Message describes the status of the alertmanager config.", "type": "string" }, "valid": { "description": "Valid indicates if the desired config is valid.", "type": "boolean" } } }, "targets": { "description": "Targets are the target hosts that should be used for targeting Alertmanager from Prometheus.", "type": "array", "items": { "type": "string" } }, "url": { "description": "URL where alertmanager can be accessed.", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "Alertmanager", "version": "v1alpha1" } ], "example": { "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": {} } } } }, "ch.nine.observability.v1alpha1.AlertmanagerList": { "description": "AlertmanagerList is a list of Alertmanager", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of alertmanagers. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Alertmanager" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "AlertmanagerList", "version": "v1alpha1" } ] }, "ch.nine.observability.v1alpha1.Grafana": { "description": "Grafana deploys a fully managed Grafana instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An GrafanaSpec defines the desired state of a Grafana.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "GrafanaParameters are the configurable fields of a Grafana.", "type": "object", "required": [ "dataSource" ], "properties": { "dataSource": { "description": "DataSource defines search parameters for DataSources.", "type": "object", "properties": { "filterLabels": { "description": "FilterLabels is a list of labels that will be filtered for when searching for data sources.", "type": "object", "additionalProperties": { "type": "string" } }, "searchNamespaces": { "description": "SearchNamespaces is a list of namespaces that will be searched for data sources that will be added to the Grafana deployment. If empty, the default is to search in the same namespace that Grafana resides in.", "type": "array", "items": { "type": "string" } } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An GrafanaStatus represents the observed state of a Grafana.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "GrafanaObservation are the observable fields of a Grafana.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "url": { "description": "URL where Grafana can be accessed.", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "Grafana", "version": "v1alpha1" } ], "example": { "kind": "Grafana", "apiVersion": "observability.nine.ch/v1alpha1", "metadata": { "name": "example-resource", "namespace": "ecorp", "creationTimestamp": null }, "spec": { "forProvider": { "dataSource": { "searchNamespaces": [ "ecorp" ] } } }, "status": { "atProvider": {} } } }, "ch.nine.observability.v1alpha1.GrafanaList": { "description": "GrafanaList is a list of Grafana", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of grafanas. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Grafana" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "GrafanaList", "version": "v1alpha1" } ] }, "ch.nine.observability.v1alpha1.Loki": { "description": "Loki deploys a fully managed Loki instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An LokiSpec defines the desired state of a Loki.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "LokiParameters are the configurable fields of a Loki.", "type": "object", "properties": { "retention": { "description": "Retention is the amount of time the logs will be kept on the backend storage of Loki. Defaults to 30 days.", "type": "string" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An LokiStatus represents the observed state of a Loki.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "LokiObservation are the observable fields of a Loki.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "Loki", "version": "v1alpha1" } ], "example": { "kind": "Loki", "apiVersion": "observability.nine.ch/v1alpha1", "metadata": { "name": "example-resource", "namespace": "ecorp", "creationTimestamp": null }, "spec": { "forProvider": {} }, "status": { "atProvider": {} } } }, "ch.nine.observability.v1alpha1.LokiList": { "description": "LokiList is a list of Loki", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of lokis. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Loki" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "LokiList", "version": "v1alpha1" } ] }, "ch.nine.observability.v1alpha1.Prometheus": { "description": "Prometheus deploys a fully managed Prometheus server.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "PrometheusSpec defines the desired state of a Prometheus.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "PrometheusParameters are the configurable fields of a Prometheus.", "type": "object", "required": [ "cluster" ], "properties": { "alertmanagers": { "description": "Alertmanagers Prometheus should send alerts to.", "type": "array", "items": { "description": "Reference references another object in a specific namespace.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } }, "cluster": { "description": "Cluster specifies on which cluster prometheus should be started on.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "diskSpace": { "description": "DiskSpace to request for storing metrics.", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true }, "enableDefaultMetrics": { "description": "EnableDefaultMetrics specifies if this Prometheus will scrape default metrics.", "type": "boolean" }, "externalLabels": { "description": "ExternalLabels are labels which are attached to every scraped metric.", "type": "object", "additionalProperties": { "type": "string" } }, "replicas": { "description": "Replicas sets the amount of prometheus replicas to start. Using more than 1 replica results in the usage of promxy in front of the prometheus instances.", "type": "integer" }, "retentionTime": { "description": "RetentionTime is the amount of time we store metrics.", "type": "string" }, "scrapeInterval": { "description": "ScrapeInterval sets the default scrape interval.", "type": "string" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "PrometheusStatus represents the observed state of a Prometheus.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "PrometheusObservation are the observable fields of a Prometheus.", "type": "object", "properties": { "helmReleaseStatus": { "description": "HelmReleaseStatus is the status of the prometheus helm release", "type": "object", "properties": { "atProvider": { "description": "ReleaseObservation are the observable fields of a Release.", "type": "object", "properties": { "releaseDescription": { "type": "string" }, "revision": { "type": "integer" }, "state": { "description": "Status is the status of a release", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" }, "failed": { "type": "integer", "format": "int32" }, "patchesSha": { "type": "string" }, "synced": { "type": "boolean" } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "Prometheus", "version": "v1alpha1" } ], "example": { "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" } ] } }, "status": { "atProvider": { "helmReleaseStatus": { "atProvider": {} } } } } }, "ch.nine.observability.v1alpha1.PrometheusList": { "description": "PrometheusList is a list of Prometheus", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of prometheuses. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Prometheus" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "PrometheusList", "version": "v1alpha1" } ] }, "ch.nine.observability.v1alpha1.Promtail": { "description": "Promtail deploys Promtail to a cluster and pushes logs to the configured Loki instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An PromtailSpec defines the desired state of a Promtail.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "PromtailParameters are the configurable fields of a Promtail.", "type": "object", "required": [ "cluster", "loki" ], "properties": { "cluster": { "description": "Cluster specifies on which cluster Promtail should be installed to.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } }, "externalLabels": { "description": "ExternalLabels are static labels to add to all logs being sent to Loki.", "type": "object", "additionalProperties": { "description": "A LabelValue is an associated value for a LabelName.", "type": "string" } }, "loki": { "description": "The Loki instance where promtail should push logs to.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An PromtailStatus represents the observed state of a Promtail.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "PromtailObservation are the observable fields of a Promtail.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "Promtail", "version": "v1alpha1" } ], "example": { "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": {} } } }, "ch.nine.observability.v1alpha1.PromtailList": { "description": "PromtailList is a list of Promtail", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of promtails. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.observability.v1alpha1.Promtail" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "observability.nine.ch", "kind": "PromtailList", "version": "v1alpha1" } ] }, "ch.nine.security.v1alpha1.ExternalSecrets": { "description": "ExternalSecrets deploys the ExternalSecrets controller to a cluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "ExternalSecretsSpec defines the desired state of a ExternalSecrets instance.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "ExternalSecretsParameters are the configurable fields of a ExternalSecrets instance.", "type": "object", "required": [ "cluster" ], "properties": { "cluster": { "description": "Cluster is the cluster where the external-secrets controller should be deployed.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "ExternalSecretsStatus represents the observed state of a ExternalSecrets instance.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "ExternalSecretsObservation are the observable fields of a ExternalSecrets instance.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "security.nine.ch", "kind": "ExternalSecrets", "version": "v1alpha1" } ] }, "ch.nine.security.v1alpha1.ExternalSecretsList": { "description": "ExternalSecretsList is a list of ExternalSecrets", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of externalsecrets. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.security.v1alpha1.ExternalSecrets" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "security.nine.ch", "kind": "ExternalSecretsList", "version": "v1alpha1" } ] }, "ch.nine.security.v1alpha1.SSHKey": { "description": "SSHKey creates a SSH key pair.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "SSHKeySpec defines the desired state of a SSHKey instance.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "SSHKeyParameters are the configurable fields of a SSHKey pair.", "type": "object", "required": [ "format" ], "properties": { "format": { "description": "Format describes the format of the SSH key.", "type": "string", "enum": [ "rsa", "ed25519" ] } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "SSHKeyStatus represents the observed state of a SSHKey instance.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "SSHKeyObservation are the observable fields of a SSHKey instance.", "type": "object", "properties": { "publicKey": { "description": "PublicKey is the public part of the created key", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "security.nine.ch", "kind": "SSHKey", "version": "v1alpha1" } ] }, "ch.nine.security.v1alpha1.SSHKeyList": { "description": "SSHKeyList is a list of SSHKey", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of sshkeys. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SSHKey" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "security.nine.ch", "kind": "SSHKeyList", "version": "v1alpha1" } ] }, "ch.nine.security.v1alpha1.SealedSecrets": { "description": "SealedSecrets deploys the SealedSecrets controller to a cluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "SealedSecretsSpec defines the desired state of a SealedSecrets instance.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "SealedSecretsParameters are the configurable fields of a SealedSecrets instance.", "type": "object", "required": [ "cluster" ], "properties": { "cluster": { "description": "Cluster is the cluster where the sealed-secrets controller should be deployed.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "SealedSecretsStatus represents the observed state of a SealedSecrets instance.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "SealedSecretsObservation are the observable fields of a SealedSecrets instance.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "security.nine.ch", "kind": "SealedSecrets", "version": "v1alpha1" } ], "example": { "kind": "SealedSecrets", "apiVersion": "security.nine.ch/v1alpha1", "metadata": { "name": "example-resource", "namespace": "ecorp", "creationTimestamp": null }, "spec": { "forProvider": { "cluster": { "name": "example-resource" } } }, "status": { "atProvider": {} } } }, "ch.nine.security.v1alpha1.SealedSecretsList": { "description": "SealedSecretsList is a list of SealedSecrets", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of sealedsecrets. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.security.v1alpha1.SealedSecrets" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "security.nine.ch", "kind": "SealedSecretsList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.Bucket": { "description": "Bucket is an object storage bucket. It's used to group objects, defines who can access them and how they are stored.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A BucketSpec defines the desired state of a Bucket.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "BucketParameters are the configurable fields of a Bucket.", "type": "object", "required": [ "location", "storageTier" ], "properties": { "backendVersion": { "description": "BackendVersion specifies the bucket backend version to use. While the APIs work the same, buckets with v1 are only compatible with bucketusers also on v1 and the same applies to v2.", "type": "string", "enum": [ "v1", "v2" ] }, "cors": { "description": "CORS settings for this bucket. CORS is a mechanism to allow code running in a browser to make requests to a domain other than the one from where it originated.", "type": "object", "required": [ "origins" ], "properties": { "maxAge": { "description": "MaxAge is the maximum time for the origin to hold the preflight results, in seconds. Also known as the cache-expiry time, it defines the duration in which the browser is allowed to make requests before it must repeat the preflight request.", "type": "integer" }, "origins": { "description": "Origins specifies the origins that should be allowed for CORS.", "type": "array", "items": { "type": "string" } }, "responseHeaders": { "description": "ResponseHeaders specifies which headers should be allowed for CORS.", "type": "array", "items": { "type": "string" } } } }, "encryption": { "description": "Encryption enables encryption at rest for this Bucket. This is only relevant for Buckets which use the v1 storage backend. Buckets with a backend of v2 are always encrypted at rest. Deprecated: Only affects v1 Buckets and will be removed in the future.", "type": "boolean" }, "lifecyclePolicies": { "description": "LifecyclePolicies allows to define automatic expiry (deletion) of objects using certain rules.", "type": "array", "items": { "description": "BucketLifecyclePolicy defines a lifecycle policy of bucket objects.", "type": "object", "properties": { "expireAfter": { "description": "ExpireAfter defines the time after an object will be expired (deleted). Note that this is not minute-accurate and an object might exist for a bit longer than specified until it is cleaned up. Usually it can take around 30 minutes. This field will only be used by Buckets with backend version 'v1'.", "type": "string" }, "expireAfterDays": { "description": "ExpireAfterDays defines the amount of days after an object will be expired (deleted). This field will only be used by Buckets with backend version 'v2'.", "type": "integer", "format": "int32" }, "isLive": { "description": "IsLive specifies if this policy applies to live objects. If false, this policy only applies to archived objects, so this is only useful when the bucket has versioning enabled.", "type": "boolean" }, "prefix": { "description": "Prefix can be used to only expire objects with a certain prefix. Do not specify if all objects should be expired.", "type": "string" } } } }, "location": { "description": "Location specifies the physical location of the Bucket.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "permissions": { "description": "Permissions configures user access to the objects in this Bucket.", "type": "array", "items": { "description": "BucketPermission defines a role and users to assign permissions on a Bucket.", "type": "object", "required": [ "role" ], "properties": { "role": { "description": "Role that this permission will be assigned.", "type": "string", "enum": [ "reader", "writer" ] }, "userRefs": { "description": "BucketUserRefs references users that will receive this permission.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } } }, "publicList": { "description": "PublicList sets this Buckets objects to be publicly listable.", "type": "boolean" }, "publicRead": { "description": "PublicRead sets this Buckets objects to be publicly readable.", "type": "boolean" }, "storageTier": { "description": "StorageType defines the type of the backing storage for the Bucket.", "type": "string", "enum": [ "standard" ] }, "versioning": { "description": "Versioning enables object versioning for this Bucket.", "type": "boolean" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A BucketStatus represents the observed state of a Bucket.", "type": "object", "properties": { "atProvider": { "description": "BucketObservation are the observable fields of a Bucket.", "type": "object", "required": [ "bytesUsed", "endpoint", "objectCount", "publicURL" ], "properties": { "bytesUsed": { "description": "BytesUsed shows the amount of bytes a bucket is currently using.", "type": "integer", "format": "int64" }, "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "endpoint": { "description": "API endpoint to use with S3 compatible clients.", "type": "string" }, "objectCount": { "description": "ObjectCount shows the amount of objects a bucket has.", "type": "integer", "format": "int64" }, "publicURL": { "description": "PublicURL where the bucket content is accessible if set to PublicRead.", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "Bucket", "version": "v1alpha1" } ], "example": { "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 } } } }, "ch.nine.storage.v1alpha1.BucketList": { "description": "BucketList is a list of Bucket", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of buckets. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Bucket" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "BucketList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.BucketMigration": { "description": "BucketMigration is an object to migrate a v1 Bucket's data to a v2 Bucket.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A BucketMigrationSpec defines the desired state of a BucketMigration.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "BucketMigrationParameters are the configurable fields of a BucketMigration.", "type": "object", "required": [ "destination", "destinationUser", "source", "sourceUser" ], "properties": { "deleteOutOfSyncObjects": { "description": "If set to true, the BucketMigration will delete all objects in the Destination that do not exist in the Source.", "type": "boolean" }, "destination": { "description": "Destination represents the destination Bucket", "type": "object", "required": [ "group", "kind", "name", "namespace" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "destinationUser": { "description": "DestinationUser is the BucketUser used for reading objects in the source Bucket. It needs read permissions on the Destination Bucket.", "type": "object", "required": [ "group", "kind", "name", "namespace" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "interval": { "description": "Interval defines how often the sync is run in minutes.", "type": "string", "enum": [ "5", "10", "15", "30", "60" ] }, "source": { "description": "Source represents the source Bucket", "type": "object", "required": [ "group", "kind", "name", "namespace" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "sourceUser": { "description": "SourceUser is the BucketUser used for reading objects in the source Bucket. It needs read permissions on the Source Bucket.", "type": "object", "required": [ "group", "kind", "name", "namespace" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A BucketMigrationStatus represents the observed state of a BucketMigration.", "type": "object", "properties": { "atProvider": { "description": "BucketMigrationObservation are the observable fields of a BucketMigration.", "type": "object", "required": [ "initialSync", "resync" ], "properties": { "initialSync": { "description": "InitialSync indicates the status of the initial bucket data sync.", "type": "object", "properties": { "schedule": { "description": "Schedule in cron format.", "type": "string" }, "status": { "description": "SyncStatus indicates the status of the last sync run.", "type": "string" }, "syncEndTime": { "description": "SyncEndTime is the timestamp of the last sync run end.", "type": "string", "format": "date-time" }, "syncStartTime": { "description": "SyncStartTime is the timestamp of the last sync run start.", "type": "string", "format": "date-time" } } }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } }, "resync": { "description": "InitialSync indicates the status of the continuous bucket data sync.", "type": "object", "properties": { "schedule": { "description": "Schedule in cron format.", "type": "string" }, "status": { "description": "SyncStatus indicates the status of the last sync run.", "type": "string" }, "syncEndTime": { "description": "SyncEndTime is the timestamp of the last sync run end.", "type": "string", "format": "date-time" }, "syncStartTime": { "description": "SyncStartTime is the timestamp of the last sync run start.", "type": "string", "format": "date-time" } } } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "BucketMigration", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.BucketMigrationList": { "description": "BucketMigrationList is a list of BucketMigration", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of bucketmigrations. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketMigration" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "BucketMigrationList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.BucketUser": { "description": "BucketUser defines a user who can access Buckets.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A BucketUserSpec defines the desired state of a BucketUser.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "BucketUserParameters are the configurable fields of a BucketUser.", "type": "object", "required": [ "location" ], "properties": { "backendVersion": { "description": "BackendVersion specifies the bucket backend version to use. While the APIs work the same, buckets with v1 are only compatible with bucketusers also on v1 and the same applies to v2.", "type": "string", "enum": [ "v1", "v2" ] }, "location": { "description": "Location specifies the physical location of the BucketUser.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "resetCredentials": { "description": "ResetCredentials if set to true, the credentials of this user will be reset in the next reconciliation loop.", "type": "boolean" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A BucketUserStatus represents the observed state of a BucketUser.", "type": "object", "properties": { "atProvider": { "description": "BucketUserObservation are the observable fields of a Bucket.", "type": "object", "required": [ "resettingCredentials" ], "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "resettingCredentials": { "description": "ResettingCredentials indicates if a reset is in progress. If it is true, the current credentials can be considered out of date.", "type": "boolean" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "BucketUser", "version": "v1alpha1" } ], "example": { "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 } } } }, "ch.nine.storage.v1alpha1.BucketUserList": { "description": "BucketUserList is a list of BucketUser", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of bucketusers. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.BucketUser" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "BucketUserList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.KeyValueStore": { "description": "KeyValueStore deploys an on-demand KeyValueStore instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A KeyValueStoreSpec defines the desired state of a Key-Value in-memory data store.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "KeyValueStoreParameters are the configurable fields of a Key-Value in-memory data store.", "type": "object", "required": [ "location" ], "properties": { "allowedCIDRs": { "description": "AllowedCIDRs specify the allowed IP addresses, connecting to the instance. IPs are in CIDR format, e.g. 192.168.1.1/24", "type": "array", "items": { "description": "IPv4CIDR represents a IPv4 address in CIDR notation", "type": "string", "pattern": "\\A([0-9]{1,3}\\.){3}[0-9]{1,3}\\/([0-9]|[1-2][0-9]|3[0-2])\\z" }, "x-kubernetes-list-type": "set" }, "location": { "description": "Location specifies in which Datacenter the in-memory data store will be spawned.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "maxMemoryPolicy": { "description": "MaxMemoryPolicy specifies the exact behavior KeyValueStore follows when the maxmemory limit is reached.", "type": "string", "enum": [ "noeviction", "allkeys-lru", "allkeys-lfu", "volatile-lru", "volatile-lfu", "allkeys-random", "volatile-random", "volatile-ttl" ] }, "memorySize": { "description": "MemorySize configures KeyValueStore to use a specified amount of memory for the data set.", "type": "string", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true }, "version": { "description": "Version specifies the KeyValueStore version. Needs to match an available KeyValueStore Version.", "type": "string", "enum": [ "7" ] } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A KeyValueStoreStatus represents the observed state of a Key-Value in-memory data store.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "KeyValueStoreObservation are the observable fields of a Key-Value in-memory data store.", "type": "object", "properties": { "caCert": { "description": "CACert is the base64 certificate of the CA that signed the certificates of KeyValueStore. The value is base64 a encoded PEM.", "type": "string" }, "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "diskSize": { "description": "DiskSize specifies the total disk size used for persistence. Note that the disk size cannot be decreased and is based on the configured MemorySize.", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true }, "fqdn": { "description": "FQDN is the fully qualified domain name, at which the instance is reachable at.", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "KeyValueStore", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.KeyValueStoreList": { "description": "KeyValueStoreList is a list of KeyValueStore", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of keyvaluestores. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.KeyValueStore" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "KeyValueStoreList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.MySQL": { "description": "MySQL deploys a Self Service MySQL instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A MySQLSpec defines the desired state of a MySQL database.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "MySQLParameters are the configurable fields of a MySQL database.", "type": "object", "required": [ "location", "machineType" ], "properties": { "allowedCIDRs": { "description": "AllowedCIDRs specify the allowed IP addresses, connecting to the db. IPs are in CIDR format, e.g. 192.168.1.1/24 Access from our Kubernetes products NKE and GKE as well as from deplo.io is already enabled. See the documentation here: https://docs.nine.ch/docs/on-demand-databases/configuration-options#allowed-ip-addresses", "type": "array", "items": { "description": "IPv4CIDR represents a IPv4 address in CIDR notation", "type": "string", "pattern": "\\A([0-9]{1,3}\\.){3}[0-9]{1,3}\\/([0-9]|[1-2][0-9]|3[0-2])\\z" }, "x-kubernetes-list-type": "set" }, "characterSet": { "description": "CharacterSet configures the `character_set_server` and collation_server` variables.", "type": "object", "properties": { "collation": { "description": "Collation configures the `collation_server` variable. The server's default collation. See section 10.15 (https://dev.mysql.com/doc/refman/8.0/en/charset-configuration.html), \"Character Set Configuration\". This should be aligned with the configured character set.", "type": "string", "enum": [ "armscii8_bin", "armscii8_general_ci", "armscii8_general_nopad_ci", "armscii8_nopad_bin", "ascii_bin", "ascii_general_ci", "ascii_general_nopad_ci", "ascii_nopad_bin", "big5_bin", "big5_chinese_ci", "big5_chinese_nopad_ci", "big5_nopad_bin", "binary", "cp1250_bin", "cp1250_croatian_ci", "cp1250_czech_cs", "cp1250_general_ci", "cp1250_general_nopad_ci", "cp1250_nopad_bin", "cp1250_polish_ci", "cp1251_bin", "cp1251_bulgarian_ci", "cp1251_general_ci", "cp1251_general_cs", "cp1251_general_nopad_ci", "cp1251_nopad_bin", "cp1251_ukrainian_ci", "cp1256_bin", "cp1256_general_ci", "cp1256_general_nopad_ci", "cp1256_nopad_bin", "cp1257_bin", "cp1257_general_ci", "cp1257_general_nopad_ci", "cp1257_lithuanian_ci", "cp1257_nopad_bin", "cp850_bin", "cp850_general_ci", "cp850_general_nopad_ci", "cp850_nopad_bin", "cp852_bin", "cp852_general_ci", "cp852_general_nopad_ci", "cp852_nopad_bin", "cp866_bin", "cp866_general_ci", "cp866_general_nopad_ci", "cp866_nopad_bin", "cp932_bin", "cp932_japanese_ci", "cp932_japanese_nopad_ci", "cp932_nopad_bin", "dec8_bin", "dec8_nopad_bin", "dec8_swedish_ci", "dec8_swedish_nopad_ci", "eucjpms_bin", "eucjpms_japanese_ci", "eucjpms_japanese_nopad_ci", "eucjpms_nopad_bin", "euckr_bin", "euckr_korean_ci", "euckr_korean_nopad_ci", "euckr_nopad_bin", "gb2312_bin", "gb2312_chinese_ci", "gb2312_chinese_nopad_ci", "gb2312_nopad_bin", "gbk_bin", "gbk_chinese_ci", "gbk_chinese_nopad_ci", "gbk_nopad_bin", "geostd8_bin", "geostd8_general_ci", "geostd8_general_nopad_ci", "geostd8_nopad_bin", "greek_bin", "greek_general_ci", "greek_general_nopad_ci", "greek_nopad_bin", "hebrew_bin", "hebrew_general_ci", "hebrew_general_nopad_ci", "hebrew_nopad_bin", "hp8_bin", "hp8_english_ci", "hp8_english_nopad_ci", "hp8_nopad_bin", "keybcs2_bin", "keybcs2_general_ci", "keybcs2_general_nopad_ci", "keybcs2_nopad_bin", "koi8r_bin", "koi8r_general_ci", "koi8r_general_nopad_ci", "koi8r_nopad_bin", "koi8u_bin", "koi8u_general_ci", "koi8u_general_nopad_ci", "koi8u_nopad_bin", "latin1_bin", "latin1_danish_ci", "latin1_general_ci", "latin1_general_cs", "latin1_german1_ci", "latin1_german2_ci", "latin1_nopad_bin", "latin1_spanish_ci", "latin1_swedish_ci", "latin1_swedish_nopad_ci", "latin2_bin", "latin2_croatian_ci", "latin2_czech_cs", "latin2_general_ci", "latin2_general_nopad_ci", "latin2_hungarian_ci", "latin2_nopad_bin", "latin5_bin", "latin5_nopad_bin", "latin5_turkish_ci", "latin5_turkish_nopad_ci", "latin7_bin", "latin7_estonian_cs", "latin7_general_ci", "latin7_general_cs", "latin7_general_nopad_ci", "latin7_nopad_bin", "macce_bin", "macce_general_ci", "macce_general_nopad_ci", "macce_nopad_bin", "macroman_bin", "macroman_general_ci", "macroman_general_nopad_ci", "macroman_nopad_bin", "sjis_bin", "sjis_japanese_ci", "sjis_japanese_nopad_ci", "sjis_nopad_bin", "swe7_bin", "swe7_nopad_bin", "swe7_swedish_ci", "swe7_swedish_nopad_ci", "tis620_bin", "tis620_nopad_bin", "tis620_thai_ci", "tis620_thai_nopad_ci", "ucs2_bin", "ucs2_croatian_ci", "ucs2_croatian_mysql561_ci", "ucs2_czech_ci", "ucs2_danish_ci", "ucs2_esperanto_ci", "ucs2_estonian_ci", "ucs2_general_ci", "ucs2_general_mysql500_ci", "ucs2_general_nopad_ci", "ucs2_german2_ci", "ucs2_hungarian_ci", "ucs2_icelandic_ci", "ucs2_latvian_ci", "ucs2_lithuanian_ci", "ucs2_myanmar_ci", "ucs2_nopad_bin", "ucs2_persian_ci", "ucs2_polish_ci", "ucs2_roman_ci", "ucs2_romanian_ci", "ucs2_sinhala_ci", "ucs2_slovak_ci", "ucs2_slovenian_ci", "ucs2_spanish2_ci", "ucs2_spanish_ci", "ucs2_swedish_ci", "ucs2_thai_520_w2", "ucs2_turkish_ci", "ucs2_unicode_520_ci", "ucs2_unicode_520_nopad_ci", "ucs2_unicode_ci", "ucs2_unicode_nopad_ci", "ucs2_vietnamese_ci", "ujis_bin", "ujis_japanese_ci", "ujis_japanese_nopad_ci", "ujis_nopad_bin", "utf16_bin", "utf16_croatian_ci", "utf16_croatian_mysql561_ci", "utf16_czech_ci", "utf16_danish_ci", "utf16_esperanto_ci", "utf16_estonian_ci", "utf16_general_ci", "utf16_general_nopad_ci", "utf16_german2_ci", "utf16_hungarian_ci", "utf16_icelandic_ci", "utf16_latvian_ci", "utf16le_bin", "utf16le_general_ci", "utf16le_general_nopad_ci", "utf16le_nopad_bin", "utf16_lithuanian_ci", "utf16_myanmar_ci", "utf16_nopad_bin", "utf16_persian_ci", "utf16_polish_ci", "utf16_roman_ci", "utf16_romanian_ci", "utf16_sinhala_ci", "utf16_slovak_ci", "utf16_slovenian_ci", "utf16_spanish2_ci", "utf16_spanish_ci", "utf16_swedish_ci", "utf16_thai_520_w2", "utf16_turkish_ci", "utf16_unicode_520_ci", "utf16_unicode_520_nopad_ci", "utf16_unicode_ci", "utf16_unicode_nopad_ci", "utf16_vietnamese_ci", "utf32_bin", "utf32_croatian_ci", "utf32_croatian_mysql561_ci", "utf32_czech_ci", "utf32_danish_ci", "utf32_esperanto_ci", "utf32_estonian_ci", "utf32_general_ci", "utf32_general_nopad_ci", "utf32_german2_ci", "utf32_hungarian_ci", "utf32_icelandic_ci", "utf32_latvian_ci", "utf32_lithuanian_ci", "utf32_myanmar_ci", "utf32_nopad_bin", "utf32_persian_ci", "utf32_polish_ci", "utf32_roman_ci", "utf32_romanian_ci", "utf32_sinhala_ci", "utf32_slovak_ci", "utf32_slovenian_ci", "utf32_spanish2_ci", "utf32_spanish_ci", "utf32_swedish_ci", "utf32_thai_520_w2", "utf32_turkish_ci", "utf32_unicode_520_ci", "utf32_unicode_520_nopad_ci", "utf32_unicode_ci", "utf32_unicode_nopad_ci", "utf32_vietnamese_ci", "utf8mb3_bin", "utf8mb3_croatian_ci", "utf8mb3_croatian_mysql561_ci", "utf8mb3_czech_ci", "utf8mb3_danish_ci", "utf8mb3_esperanto_ci", "utf8mb3_estonian_ci", "utf8mb3_general_ci", "utf8mb3_general_mysql500_ci", "utf8mb3_general_nopad_ci", "utf8mb3_german2_ci", "utf8mb3_hungarian_ci", "utf8mb3_icelandic_ci", "utf8mb3_latvian_ci", "utf8mb3_lithuanian_ci", "utf8mb3_myanmar_ci", "utf8mb3_nopad_bin", "utf8mb3_persian_ci", "utf8mb3_polish_ci", "utf8mb3_roman_ci", "utf8mb3_romanian_ci", "utf8mb3_sinhala_ci", "utf8mb3_slovak_ci", "utf8mb3_slovenian_ci", "utf8mb3_spanish2_ci", "utf8mb3_spanish_ci", "utf8mb3_swedish_ci", "utf8mb3_thai_520_w2", "utf8mb3_turkish_ci", "utf8mb3_unicode_520_ci", "utf8mb3_unicode_520_nopad_ci", "utf8mb3_unicode_ci", "utf8mb3_unicode_nopad_ci", "utf8mb3_vietnamese_ci", "utf8mb4_bin", "utf8mb4_croatian_ci", "utf8mb4_croatian_mysql561_ci", "utf8mb4_czech_ci", "utf8mb4_danish_ci", "utf8mb4_esperanto_ci", "utf8mb4_estonian_ci", "utf8mb4_general_ci", "utf8mb4_general_nopad_ci", "utf8mb4_german2_ci", "utf8mb4_hungarian_ci", "utf8mb4_icelandic_ci", "utf8mb4_latvian_ci", "utf8mb4_lithuanian_ci", "utf8mb4_myanmar_ci", "utf8mb4_nopad_bin", "utf8mb4_persian_ci", "utf8mb4_polish_ci", "utf8mb4_roman_ci", "utf8mb4_romanian_ci", "utf8mb4_sinhala_ci", "utf8mb4_slovak_ci", "utf8mb4_slovenian_ci", "utf8mb4_spanish2_ci", "utf8mb4_spanish_ci", "utf8mb4_swedish_ci", "utf8mb4_thai_520_w2", "utf8mb4_turkish_ci", "utf8mb4_unicode_520_ci", "utf8mb4_unicode_520_nopad_ci", "utf8mb4_unicode_ci", "utf8mb4_unicode_nopad_ci", "utf8mb4_vietnamese_ci" ] }, "name": { "description": "Name configures the `character_set_server` variable. The servers default character set. See section 10.15 (https://dev.mysql.com/doc/refman/8.0/en/charset-configuration.html), \"Character Set Configuration\". If you set this variable, you should also set collation_server to specify the collation for the character set.", "type": "string", "enum": [ "armscii8", "ascii", "big5", "binary", "cp1250", "cp1251", "cp1256", "cp1257", "cp850", "cp852", "cp866", "cp932", "dec8", "eucjpms", "euckr", "gb2312", "gbk", "geostd8", "greek", "hebrew", "hp8", "keybcs2", "koi8r", "koi8u", "latin1", "latin2", "latin5", "latin7", "macce", "macroman", "sjis", "swe7", "tis620", "ucs2", "ujis", "utf16", "utf16le", "utf32", "utf8mb3", "utf8mb4" ] } } }, "keepDailyBackups": { "description": "Number of daily database backups to keep. Note, that setting this to 0, backup will be disabled and existing dumps deleted immediately.", "type": "integer", "maximum": 365, "minimum": 0 }, "location": { "description": "Location specifies in which Datacenter the database will be spawned. Needs to match the available MachineTypes in that datacenter.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "longQueryTime": { "description": "LongQueryTime configures the `long_query_time` variable. If a query takes longer than this many seconds, the the query is logged to the slow query log file. This value is measured in real time, not CPU time, so a query that is under the threshold on a lightly loaded system might be above the threshold on a heavily loaded one. Smaller values of this variable result in more statements being considered long-running, with the result that more space is required for the slow query log.", "type": "string" }, "machineType": { "description": "MachineType defines the sizing for a particular machine and implicitly the provider.", "type": "string", "enum": [ "nine-standard-1", "nine-standard-2" ] }, "minWordLength": { "description": "MinWordLength configures the`ft_min_word_len` and `innodb_ft_min_token_size` variables. Minimum length of words that are stored in an InnoDB or MyISAM FULLTEXT index.", "type": "integer", "maximum": 16, "minimum": 1 }, "sqlMode": { "description": "SQLMode configures the sql_mode setting. Modes affect the SQL syntax MySQL supports and the data validation checks it performs.", "type": "array", "items": { "description": "MySQLMode represents a single possible SQL mode. Modes affect the SQL syntax MySQL supports and the data validation checks it performs. This makes it easier to use MySQL in different environments and to use MySQL together with other database servers. https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html", "type": "string", "enum": [ "ALLOW_INVALID_DATES", "ANSI_QUOTES", "ERROR_FOR_DIVISION_BY_ZERO", "HIGH_NOT_PRECEDENCE", "IGNORE_SPACE", "NO_AUTO_VALUE_ON_ZERO", "NO_BACKSLASH_ESCAPES", "NO_DIR_IN_CREATE", "NO_ENGINE_SUBSTITUTION", "NO_UNSIGNED_SUBTRACTION", "NO_ZERO_DATE", "NO_ZERO_IN_DATE", "ONLY_FULL_GROUP_BY", "PAD_CHAR_TO_FULL_LENGTH", "PIPES_AS_CONCAT", "REAL_AS_FLOAT", "STRICT_ALL_TABLES", "STRICT_TRANS_TABLES", "TIME_TRUNCATE_FRACTIONAL" ] }, "x-kubernetes-list-type": "set" }, "sshKeys": { "description": "SSHKeys contains a list of SSH public keys, allowed to connect to the db server, in order to up-/download and directly restore database backups.", "type": "array", "items": { "description": "SSHKey Public SSH key without options", "type": "string", "pattern": "\\A(?:sk-(?:ecdsa-sha2-nistp256|ssh-ed25519)@openssh\\.com|ecdsa-sha2-nistp(?:256|384|521))|ssh-(?:ed25519|dss|rsa) [a-z0-9A-Z+\\/]+={0,2}(?: [^\\n]+)?\\z" } }, "transactionIsolation": { "description": "TransactionIsolation configures the `transaction_isolation` variable.", "type": "string", "enum": [ "READ-UNCOMMITTED", "READ-COMMITTED", "REPEATABLE-READ", "SERIALIZABLE" ] }, "version": { "description": "Version specifies the MySQL version. Needs to match an available MySQL Version.", "type": "string" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A MySQLStatus represents the observed state of a MySQL database.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "MySQLObservation are the observable fields of a MySQL database.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "dbcount": { "description": "DBCount specifies the number of DBs", "type": "object", "required": [ "lastUpdated", "value" ], "properties": { "lastUpdated": { "type": "string", "format": "date-time" }, "value": { "type": "integer" } } }, "fqdn": { "description": "FQDN is the fully qualified domain name, at which the database is reachable at.", "type": "string" }, "size": { "description": "Size specifies the total disk size", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "MySQL", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.MySQLList": { "description": "MySQLList is a list of MySQL", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of mysqls. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.MySQL" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "MySQLList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.ObjectsBucket": { "description": "ObjectsBucket defines a Nutanix Objects Bucket.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A ObjectsBucketSpec defines the desired state of an ObjectsBucket.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "ObjectsBucketParameters are the configurable fields of an ObjectsBucket.", "type": "object", "required": [ "location" ], "properties": { "cors": { "description": "CORS settings for this bucket. CORS is a mechanism to allow code running in a browser to make requests to a domain other than the one from where it originated.", "type": "object", "required": [ "origins" ], "properties": { "maxAge": { "description": "MaxAge is the maximum time for the origin to hold the preflight results, in seconds. Also known as the cache-expiry time, it defines the duration in which the browser is allowed to make requests before it must repeat the preflight request.", "type": "integer" }, "origins": { "description": "Origins specifies the origins that should be allowed for CORS.", "type": "array", "items": { "type": "string" } }, "responseHeaders": { "description": "ResponseHeaders specifies which headers should be allowed for CORS.", "type": "array", "items": { "type": "string" } } } }, "lifecyclePolicies": { "description": "LifecyclePolicies allows to define automatic expiry (deletion) of objects using certain rules.", "type": "array", "items": { "description": "BucketLifecyclePolicy defines a lifecycle policy of bucket objects.", "type": "object", "properties": { "expireAfter": { "description": "ExpireAfter defines the time after an object will be expired (deleted). Note that this is not minute-accurate and an object might exist for a bit longer than specified until it is cleaned up. Usually it can take around 30 minutes. This field will only be used by Buckets with backend version 'v1'.", "type": "string" }, "expireAfterDays": { "description": "ExpireAfterDays defines the amount of days after an object will be expired (deleted). This field will only be used by Buckets with backend version 'v2'.", "type": "integer", "format": "int32" }, "isLive": { "description": "IsLive specifies if this policy applies to live objects. If false, this policy only applies to archived objects, so this is only useful when the bucket has versioning enabled.", "type": "boolean" }, "prefix": { "description": "Prefix can be used to only expire objects with a certain prefix. Do not specify if all objects should be expired.", "type": "string" } } } }, "location": { "description": "Location specifies the physical location of the ObjectsBucket.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "permissions": { "description": "Permissions configures user access to the objects in this Bucket.", "type": "array", "items": { "description": "BucketPermission defines a role and users to assign permissions on a Bucket.", "type": "object", "required": [ "role" ], "properties": { "role": { "description": "Role that this permission will be assigned.", "type": "string", "enum": [ "reader", "writer" ] }, "userRefs": { "description": "BucketUserRefs references users that will receive this permission.", "type": "array", "items": { "description": "LocalReference references another object in the same namespace.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the target.", "type": "string" } } } } } } }, "publicList": { "description": "PublicList sets this Buckets objects to be publicly listable.", "type": "boolean" }, "publicRead": { "description": "PublicRead sets this Buckets objects to be publicly readable.", "type": "boolean" }, "versioning": { "description": "Versioning enables object versioning for this Bucket.", "type": "boolean" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A ObjectsBucketStatus represents the observed state of an ObjectsBucket.", "type": "object", "properties": { "atProvider": { "description": "ObjectsBucketObservation are the observable fields of an ObjectsBucket.", "type": "object", "required": [ "bytesUsed", "endpoint", "objectCount", "url" ], "properties": { "bytesUsed": { "description": "BytesUsed shows the amount of bytes a bucket is currently using.", "type": "integer", "format": "int64" }, "endpoint": { "description": "API endpoint to use with S3 compatible clients.", "type": "string" }, "objectCount": { "description": "ObjectCount shows the amount of objects a bucket has.", "type": "integer", "format": "int64" }, "referenceErrors": { "type": "array", "items": { "type": "object", "required": [ "kind", "message", "name", "namespace" ], "properties": { "kind": { "type": "string" }, "message": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } } }, "url": { "description": "URL where the bucket can be accessed for path-style access.", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "ObjectsBucket", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.ObjectsBucketList": { "description": "ObjectsBucketList is a list of ObjectsBucket", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of objectsbuckets. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.ObjectsBucket" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "ObjectsBucketList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.Postgres": { "description": "Postgres deploys a Self Service Postgres instance.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "A PostgresSpec defines the desired state of a Postgres database.", "type": "object", "required": [ "forProvider" ], "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "PostgresParameters are the configurable fields of a Postgres database.", "type": "object", "required": [ "location", "machineType" ], "properties": { "allowedCIDRs": { "description": "AllowedCIDRs specify the allowed IP addresses, connecting to the db. IPs are in CIDR format, e.g. 192.168.1.1/24 Access from our Kubernetes products NKE and GKE as well as from deplo.io is already enabled. See the documentation here: https://docs.nine.ch/docs/on-demand-databases/configuration-options#allowed-ip-addresses", "type": "array", "items": { "description": "IPv4CIDR represents a IPv4 address in CIDR notation", "type": "string", "pattern": "\\A([0-9]{1,3}\\.){3}[0-9]{1,3}\\/([0-9]|[1-2][0-9]|3[0-2])\\z" }, "x-kubernetes-list-type": "set" }, "keepDailyBackups": { "description": "Number of daily database backups to keep. Note, that setting this to 0, backup will be disabled and existing dumps deleted immediately.", "type": "integer", "maximum": 365, "minimum": 0 }, "location": { "description": "Location specifies in which Datacenter the database will be spawned. Needs to match the available MachineTypes in that datacenter.", "type": "string", "enum": [ "nine-cz41", "nine-cz42", "nine-es34" ] }, "machineType": { "description": "MachineType defines the sizing for a particular machine and implicitly the provider.", "type": "string", "enum": [ "nine-standard-1", "nine-standard-2" ] }, "sshKeys": { "description": "SSHKeys contains a list of SSH public keys, allowed to connect to the db server, in order to up-/download and directly restore database backups.", "type": "array", "items": { "description": "SSHKey Public SSH key without options", "type": "string", "pattern": "\\A(?:sk-(?:ecdsa-sha2-nistp256|ssh-ed25519)@openssh\\.com|ecdsa-sha2-nistp(?:256|384|521))|ssh-(?:ed25519|dss|rsa) [a-z0-9A-Z+\\/]+={0,2}(?: [^\\n]+)?\\z" } }, "version": { "description": "Version specifies the Postgres version. Needs to match an available Postgres Version.", "type": "string", "enum": [ "13", "14", "15", "16" ] } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "A PostgresStatus represents the observed state of a Postgres database.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "PostgresObservation are the observable fields of a Postgres database.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "dbcount": { "description": "DBCount specifies the number of DBs", "type": "object", "required": [ "lastUpdated", "value" ], "properties": { "lastUpdated": { "type": "string", "format": "date-time" }, "value": { "type": "integer" } } }, "fqdn": { "description": "FQDN is the fully qualified domain name, at which the database is reachable at.", "type": "string" }, "size": { "description": "Size specifies the total disk size", "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", "x-kubernetes-int-or-string": true } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "Postgres", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.PostgresList": { "description": "PostgresList is a list of Postgres", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of postgres. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Postgres" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "PostgresList", "version": "v1alpha1" } ] }, "ch.nine.storage.v1alpha1.Registry": { "description": "Registry describes and deploys Docker Container Registry to a cluster.", "type": "object", "required": [ "spec" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" }, "spec": { "description": "An RegistrySpec defines the desired state of a Registry.", "type": "object", "properties": { "deletionPolicy": { "description": "DeletionPolicy specifies what will happen to the underlying external when this managed resource is deleted - either \"Delete\" or \"Orphan\" the external resource. This field is planned to be deprecated in favor of the ManagementPolicies field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223", "type": "string", "enum": [ "Orphan", "Delete" ] }, "forProvider": { "description": "RegistryParameters are the configurable fields of a Registry.", "type": "object", "properties": { "nineAuthServer": { "description": "NineAuthServer adds an auth server in front of the registry to allow authentication and authorization using Nine API credentials. If disabled auth will be done using basic auth.", "type": "boolean" } } }, "managementPolicies": { "description": "THIS IS A BETA FIELD. It is on by default but can be opted out through a Crossplane feature flag. ManagementPolicies specify the array of actions Crossplane is allowed to take on the managed and external resources. This field is planned to replace the DeletionPolicy field in a future release. Currently, both could be set independently and non-default values would be honored if the feature flag is enabled. If both are custom, the DeletionPolicy field will be ignored. See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223 and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md", "type": "array", "items": { "description": "A ManagementAction represents an action that the Crossplane controllers can take on an external resource.", "type": "string", "enum": [ "Observe", "Create", "Update", "Delete", "LateInitialize", "*" ] } }, "providerConfigRef": { "description": "ProviderConfigReference specifies how the provider that will be used to create, observe, update, and delete this managed resource should be configured.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "publishConnectionDetailsTo": { "description": "PublishConnectionDetailsTo specifies the connection secret config which contains a name, metadata and a reference to secret store config to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource.", "type": "object", "required": [ "name" ], "properties": { "configRef": { "description": "SecretStoreConfigRef specifies which secret store config should be used for this ConnectionSecret.", "type": "object", "required": [ "name" ], "properties": { "name": { "description": "Name of the referenced object.", "type": "string" }, "policy": { "description": "Policies for referencing.", "type": "object", "properties": { "resolution": { "description": "Resolution specifies whether resolution of this reference is required. The default is 'Required', which means the reconcile will fail if the reference cannot be resolved. 'Optional' means this reference will be a no-op if it cannot be resolved.", "type": "string", "enum": [ "Required", "Optional" ] }, "resolve": { "description": "Resolve specifies when this reference should be resolved. The default is 'IfNotPresent', which will attempt to resolve the reference only when the corresponding field is not present. Use 'Always' to resolve the reference on every reconcile.", "type": "string", "enum": [ "Always", "IfNotPresent" ] } } } } }, "metadata": { "description": "Metadata is the metadata for connection secret.", "type": "object", "properties": { "annotations": { "description": "Annotations are the annotations to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.annotations\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "labels": { "description": "Labels are the labels/tags to be added to connection secret. - For Kubernetes secrets, this will be used as \"metadata.labels\". - It is up to Secret Store implementation for others store types.", "type": "object", "additionalProperties": { "type": "string" } }, "type": { "description": "Type is the SecretType for the connection secret. - Only valid for Kubernetes Secret Stores.", "type": "string" } } }, "name": { "description": "Name is the name of the connection secret.", "type": "string" } } }, "writeConnectionSecretToRef": { "description": "WriteConnectionSecretToReference specifies the namespace and name of a Secret to which any connection details for this managed resource should be written. Connection details frequently include the endpoint, username, and password required to connect to the managed resource. This field is planned to be replaced in a future release in favor of PublishConnectionDetailsTo. Currently, both could be set independently and connection details would be published to both without affecting each other.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the secret.", "type": "string" }, "namespace": { "description": "Namespace of the secret.", "type": "string" } } } } }, "status": { "description": "An RegistryStatus represents the observed state of a Registry.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "RegistryObservation are the observable fields of a Registry.", "type": "object", "properties": { "childResourceErrors": { "description": "ChildResourceErrors of a managed resource.", "type": "array", "items": { "description": "ChildResourceError is an error that occurred on a child resource of a managed resource.", "type": "object", "required": [ "message", "resource", "type" ], "properties": { "message": { "description": "Message that describes why the resource failed.", "type": "string" }, "resource": { "description": "Resource references the child resource that errored.", "type": "object", "required": [ "name", "namespace" ], "properties": { "name": { "description": "Name of the target.", "type": "string" }, "namespace": { "description": "Namespace of the target.", "type": "string" } } }, "type": { "description": "Type specifies the type of the resource.", "type": "object", "required": [ "group", "kind", "version" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "version": { "type": "string" } } } } } }, "url": { "description": "URL shows the URL of the deployed registry", "type": "string" } } }, "conditions": { "description": "Conditions of the resource.", "type": "array", "items": { "description": "A Condition that may apply to a resource.", "type": "object", "required": [ "lastTransitionTime", "reason", "status", "type" ], "properties": { "lastTransitionTime": { "description": "LastTransitionTime is the last time this condition transitioned from one status to another.", "type": "string", "format": "date-time" }, "message": { "description": "A Message containing details about this condition's last transition from one status to another, if any.", "type": "string" }, "reason": { "description": "A Reason for this condition's last transition from one status to another.", "type": "string" }, "status": { "description": "Status of this condition; is it currently True, False, or Unknown?", "type": "string" }, "type": { "description": "Type of this condition. At most one of each condition type may apply to a resource at any point in time.", "type": "string" } } }, "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } } } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "Registry", "version": "v1alpha1" } ], "example": { "kind": "Registry", "apiVersion": "storage.nine.ch/v1alpha1", "metadata": { "name": "example-resource", "namespace": "ecorp", "creationTimestamp": null }, "spec": { "writeConnectionSecretToRef": { "name": "credentials", "namespace": "ecorp" }, "forProvider": {} }, "status": { "atProvider": {} } } }, "ch.nine.storage.v1alpha1.RegistryList": { "description": "RegistryList is a list of Registry", "required": [ "items" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of registries. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.storage.v1alpha1.Registry" } }, "kind": { "description": "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", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" } }, "x-kubernetes-group-version-kind": [ { "group": "storage.nine.ch", "kind": "RegistryList", "version": "v1alpha1" } ] }, "io.k8s.apimachinery.pkg.api.resource.Quantity": { "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` \u003cquantity\u003e ::= \u003csignedNumber\u003e\u003csuffix\u003e\n\n\t(Note that \u003csuffix\u003e may be empty, from the \"\" case in \u003cdecimalSI\u003e.)\n\n\u003cdigit\u003e ::= 0 | 1 | ... | 9 \u003cdigits\u003e ::= \u003cdigit\u003e | \u003cdigit\u003e\u003cdigits\u003e \u003cnumber\u003e ::= \u003cdigits\u003e | \u003cdigits\u003e.\u003cdigits\u003e | \u003cdigits\u003e. | .\u003cdigits\u003e \u003csign\u003e ::= \"+\" | \"-\" \u003csignedNumber\u003e ::= \u003cnumber\u003e | \u003csign\u003e\u003cnumber\u003e \u003csuffix\u003e ::= \u003cbinarySI\u003e | \u003cdecimalExponent\u003e | \u003cdecimalSI\u003e \u003cbinarySI\u003e ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n\u003cdecimalSI\u003e ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n\u003cdecimalExponent\u003e ::= \"e\" \u003csignedNumber\u003e | \"E\" \u003csignedNumber\u003e ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", "type": "string" }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": { "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.", "type": "object", "required": [ "name", "versions" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "name": { "description": "name is the name of the group.", "type": "string" }, "preferredVersion": { "description": "preferredVersion is the version preferred by the API server, which probably is the storage version.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery" }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR" } }, "versions": { "description": "versions are the versions supported in this group.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery" } } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroup", "version": "v1" } ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList": { "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.", "type": "object", "required": [ "groups" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "groups": { "description": "groups is a list of APIGroup.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup" } }, "kind": { "description": "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", "type": "string" } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroupList", "version": "v1" } ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": { "description": "APIResource specifies the name of a resource and whether it is namespaced.", "type": "object", "required": [ "name", "singularName", "namespaced", "kind", "verbs" ], "properties": { "categories": { "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", "type": "array", "items": { "type": "string" } }, "group": { "description": "group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".", "type": "string" }, "kind": { "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", "type": "string" }, "name": { "description": "name is the plural name of the resource.", "type": "string" }, "namespaced": { "description": "namespaced indicates if a resource is namespaced or not.", "type": "boolean" }, "shortNames": { "description": "shortNames is a list of suggested short names of the resource.", "type": "array", "items": { "type": "string" } }, "singularName": { "description": "singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.", "type": "string" }, "storageVersionHash": { "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.", "type": "string" }, "verbs": { "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", "type": "array", "items": { "type": "string" } }, "version": { "description": "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": { "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.", "type": "object", "required": [ "groupVersion", "resources" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "groupVersion": { "description": "groupVersion is the group and version this APIResourceList is for.", "type": "string" }, "kind": { "description": "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", "type": "string" }, "resources": { "description": "resources contains the name of the resources and if they are namespaced.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource" } } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIResourceList", "version": "v1" } ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions": { "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.", "type": "object", "required": [ "versions", "serverAddressByClientCIDRs" ], "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "type": "string" }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR" } }, "versions": { "description": "versions are the api versions that are available.", "type": "array", "items": { "type": "string" } } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIVersions", "version": "v1" } ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.Condition": { "description": "Condition contains details for one aspect of the current state of this API Resource.", "type": "object", "required": [ "type", "status", "lastTransitionTime", "reason", "message" ], "properties": { "lastTransitionTime": { "description": "lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "message": { "description": "message is a human readable message indicating details about the transition. This may be an empty string.", "type": "string" }, "observedGeneration": { "description": "observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.", "type": "integer", "format": "int64" }, "reason": { "description": "reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.", "type": "string" }, "status": { "description": "status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "type of condition in CamelCase or in foo.example.com/CamelCase.", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": { "description": "DeleteOptions may be provided when deleting an API object.", "type": "object", "properties": { "apiVersion": { "description": "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", "type": "string" }, "dryRun": { "description": "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", "type": "array", "items": { "type": "string" } }, "gracePeriodSeconds": { "description": "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.", "type": "integer", "format": "int64" }, "kind": { "description": "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", "type": "string" }, "orphanDependents": { "description": "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.", "type": "boolean" }, "preconditions": { "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions" }, "propagationPolicy": { "description": "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.", "type": "string" } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "DeleteOptions", "version": "v1" }, { "group": "admission.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "admission.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apiextensions.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "apiextensions.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apiregistration.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "apiregistration.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1beta2" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "authorization.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "authorization.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2beta1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2beta2" }, { "group": "batch", "kind": "DeleteOptions", "version": "v1" }, { "group": "batch", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "certificates.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "certificates.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "coordination.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "coordination.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "discovery.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "discovery.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "events.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "events.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "extensions", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1beta2" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1beta3" }, { "group": "imagepolicy.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "internal.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "policy", "kind": "DeleteOptions", "version": "v1" }, { "group": "policy", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "resource.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" } ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:\u003cname\u003e', where \u003cname\u003e is the name of a field in a struct, or key in a map 'v:\u003cvalue\u003e', where \u003cvalue\u003e is the exact json formatted value of a list item 'i:\u003cindex\u003e', where \u003cindex\u003e is position of a item in a list 'k:\u003ckeys\u003e', where \u003ckeys\u003e is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery": { "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.", "type": "object", "required": [ "groupVersion", "version" ], "properties": { "groupVersion": { "description": "groupVersion specifies the API group and version in the form \"group/version\"", "type": "string" }, "version": { "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "type": "object", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement" } }, "matchLabels": { "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", "type": "object", "additionalProperties": { "type": "string" } } }, "x-kubernetes-map-type": "atomic" }, "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "type": "object", "required": [ "key", "operator" ], "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", "type": "array", "items": { "type": "string" } } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "type": "object", "properties": { "continue": { "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", "type": "string" }, "remainingItemCount": { "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", "type": "integer", "format": "int64" }, "resourceVersion": { "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "type": "object", "properties": { "apiVersion": { "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1" }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "subresource": { "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.", "type": "string" }, "time": { "description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime": { "description": "MicroTime is version of Time with microsecond level precision.", "type": "string", "format": "date-time" }, "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "type": "object", "properties": { "annotations": { "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", "type": "object", "additionalProperties": { "type": "string" } }, "creationTimestamp": { "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "deletionGracePeriodSeconds": { "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", "type": "integer", "format": "int64" }, "deletionTimestamp": { "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" }, "finalizers": { "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", "type": "array", "items": { "type": "string" }, "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer", "format": "int64" }, "labels": { "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", "type": "object", "additionalProperties": { "type": "string" } }, "managedFields": { "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry" } }, "name": { "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference" }, "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "selfLink": { "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", "type": "string" }, "uid": { "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "type": "object", "required": [ "apiVersion", "kind", "name", "uid" ], "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "x-kubernetes-map-type": "atomic" }, "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", "type": "object" }, "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": { "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", "type": "object", "properties": { "resourceVersion": { "description": "Specifies the target ResourceVersion", "type": "string" }, "uid": { "description": "Specifies the target UID.", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR": { "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", "type": "object", "required": [ "clientCIDR", "serverAddress" ], "properties": { "clientCIDR": { "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", "type": "string" }, "serverAddress": { "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.Status": { "description": "Status is a return value for calls that don't return other objects.", "type": "object", "properties": { "apiVersion": { "description": "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", "type": "string" }, "code": { "description": "Suggested HTTP return code for this status, 0 if not set.", "type": "integer", "format": "int32" }, "details": { "description": "Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails" }, "kind": { "description": "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", "type": "string" }, "message": { "description": "A human-readable description of the status of this operation.", "type": "string" }, "metadata": { "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" }, "reason": { "description": "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.", "type": "string" }, "status": { "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", "type": "string" } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Status", "version": "v1" }, { "group": "resource.k8s.io", "kind": "Status", "version": "v1alpha1" } ] }, "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": { "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.", "type": "object", "properties": { "field": { "description": "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"", "type": "string" }, "message": { "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.", "type": "string" }, "reason": { "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": { "description": "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.", "type": "object", "properties": { "causes": { "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.", "type": "array", "items": { "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause" } }, "group": { "description": "The group attribute of the resource associated with the status StatusReason.", "type": "string" }, "kind": { "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).", "type": "string" }, "retryAfterSeconds": { "description": "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.", "type": "integer", "format": "int32" }, "uid": { "description": "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } } }, "io.k8s.apimachinery.pkg.apis.meta.v1.Time": { "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string", "format": "date-time" }, "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": { "description": "Event represents a single event to a watched resource.", "type": "object", "required": [ "type", "object" ], "properties": { "object": { "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n depending on context.", "$ref": "#/definitions/io.k8s.apimachinery.pkg.runtime.RawExtension" }, "type": { "type": "string" } }, "x-kubernetes-group-version-kind": [ { "group": "", "kind": "WatchEvent", "version": "v1" }, { "group": "admission.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "admission.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apiextensions.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "apiextensions.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apiregistration.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "apiregistration.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apps", "kind": "WatchEvent", "version": "v1" }, { "group": "apps", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apps", "kind": "WatchEvent", "version": "v1beta2" }, { "group": "authentication.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "authentication.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "authentication.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "authorization.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "authorization.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v1" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v2" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v2beta1" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v2beta2" }, { "group": "batch", "kind": "WatchEvent", "version": "v1" }, { "group": "batch", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "certificates.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "certificates.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "coordination.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "coordination.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "discovery.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "discovery.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "events.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "events.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "extensions", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1beta2" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1beta3" }, { "group": "imagepolicy.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "internal.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "networking.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "node.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "node.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "node.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "policy", "kind": "WatchEvent", "version": "v1" }, { "group": "policy", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "rbac.authorization.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "rbac.authorization.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "rbac.authorization.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "resource.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "storage.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "storage.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "WatchEvent", "version": "v1beta1" } ] }, "io.k8s.apimachinery.pkg.runtime.RawExtension": { "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", "type": "object" }, "io.k8s.apimachinery.pkg.util.intstr.IntOrString": { "description": "IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", "type": "string", "format": "int-or-string" }, "io.k8s.apimachinery.pkg.version.Info": { "description": "Info contains versioning information. how we'll want to distribute that information.", "type": "object", "required": [ "major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform" ], "properties": { "buildDate": { "type": "string" }, "compiler": { "type": "string" }, "gitCommit": { "type": "string" }, "gitTreeState": { "type": "string" }, "gitVersion": { "type": "string" }, "goVersion": { "type": "string" }, "major": { "type": "string" }, "minor": { "type": "string" }, "platform": { "type": "string" } } } }, "securityDefinitions": { "BearerToken": { "description": "Bearer Token authentication", "type": "apiKey", "name": "authorization", "in": "header" } }, "security": [ { "BearerToken": [] } ], "tags": [ { "description": "APIServiceAccount is a service account to access the API.", "name": "APIServiceAccount" }, { "description": "Alertmanager deploys a fully managed Alertmanager instance.", "name": "Alertmanager" }, { "description": "Application takes source code as the input and fully builds and deploys the application.", "name": "Application" }, { "description": "ArgoCD deploys a fully managed Argo CD instance.", "name": "ArgoCD" }, { "description": "Bucket is an object storage bucket. It's used to group objects, defines who can access them and how they are stored.", "name": "Bucket" }, { "description": "BucketMigration is an object to migrate a v1 Bucket's data to a v2 Bucket.", "name": "BucketMigration" }, { "description": "BucketUser defines a user who can access Buckets.", "name": "BucketUser" }, { "description": "A Build represents an OCI image build of some referenced source code", "name": "Build" }, { "description": "ExternalSecrets deploys the ExternalSecrets controller to a cluster.", "name": "ExternalSecrets" }, { "description": "Grafana deploys a fully managed Grafana instance.", "name": "Grafana" }, { "description": "IngressNginx deploys an NGINX ingress controller to a cluster.", "name": "IngressNginx" }, { "description": "Keda deploys Keda to a KubernetesCluster.", "name": "Keda" }, { "description": "KeyValueStore deploys an on-demand KeyValueStore instance.", "name": "KeyValueStore" }, { "description": "KubernetesCluster is a fully managed Kubernetes cluster.", "name": "KubernetesCluster" }, { "description": "KubernetesClustersRoleBinding binds a role to subjects and KubernetesClusters.", "name": "KubernetesClustersRoleBinding" }, { "description": "KubernetesServiceAccount is a service account to access a KubernetesCluster.", "name": "KubernetesServiceAccount" }, { "description": "Loki deploys a fully managed Loki instance.", "name": "Loki" }, { "description": "MySQL deploys a Self Service MySQL instance.", "name": "MySQL" }, { "description": "ObjectsBucket defines a Nutanix Objects Bucket.", "name": "ObjectsBucket" }, { "description": "Postgres deploys a Self Service Postgres instance.", "name": "Postgres" }, { "description": "A Project represents a project/environment of a organization.", "name": "Project" }, { "description": "A ProjectConfig defines the default config of an application in a project.", "name": "ProjectConfig" }, { "description": "Prometheus deploys a fully managed Prometheus server.", "name": "Prometheus" }, { "description": "Promtail deploys Promtail to a cluster and pushes logs to the configured Loki instance.", "name": "Promtail" }, { "description": "Registry describes and deploys Docker Container Registry to a cluster.", "name": "Registry" }, { "description": "A Release is created from a \"successful\" Build. It contains all the information needed to deploy the application.", "name": "Release" }, { "description": "SSHKey creates a SSH key pair.", "name": "SSHKey" }, { "description": "SealedSecrets deploys the SealedSecrets controller to a cluster.", "name": "SealedSecrets" } ], "x-tagGroups": [ { "name": "apps.nine.ch", "tags": [ "Application", "ApplicationList", "Build", "BuildList", "ProjectConfig", "ProjectConfigList", "Release", "ReleaseList" ] }, { "name": "devtools.nine.ch", "tags": [ "ArgoCD", "ArgoCDList" ] }, { "name": "iam.nine.ch", "tags": [ "APIServiceAccount", "APIServiceAccountList", "KubernetesClustersRoleBinding", "KubernetesClustersRoleBindingList", "KubernetesServiceAccount", "KubernetesServiceAccountList" ] }, { "name": "infrastructure.nine.ch", "tags": [ "Keda", "KedaList", "KubernetesCluster", "KubernetesClusterList" ] }, { "name": "management.nine.ch", "tags": [ "Project", "ProjectList" ] }, { "name": "networking.nine.ch", "tags": [ "IngressNginx", "IngressNginxList" ] }, { "name": "observability.nine.ch", "tags": [ "Alertmanager", "AlertmanagerList", "Grafana", "GrafanaList", "Loki", "LokiList", "Prometheus", "PrometheusList", "Promtail", "PromtailList" ] }, { "name": "security.nine.ch", "tags": [ "ExternalSecrets", "ExternalSecretsList", "SSHKey", "SSHKeyList", "SealedSecrets", "SealedSecretsList" ] }, { "name": "storage.nine.ch", "tags": [ "Bucket", "BucketList", "BucketMigration", "BucketMigrationList", "BucketUser", "BucketUserList", "KeyValueStore", "KeyValueStoreList", "MySQL", "MySQLList", "ObjectsBucket", "ObjectsBucketList", "Postgres", "PostgresList", "Registry", "RegistryList" ] } ] }