{ "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/apis/infrastructure.nine.ch/v1alpha1/namespaces/{namespace}/cloudvirtualmachines": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "list objects of kind CloudVirtualMachine", "operationId": "listInfrastructureNineChV1alpha1NamespacedCloudVirtualMachine", "parameters": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachineList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "CloudVirtualMachine", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "create a CloudVirtualMachine", "operationId": "createInfrastructureNineChV1alpha1NamespacedCloudVirtualMachine", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, { "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "CloudVirtualMachine", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "delete collection of CloudVirtualMachine", "operationId": "deleteInfrastructureNineChV1alpha1CollectionNamespacedCloudVirtualMachine", "parameters": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": "CloudVirtualMachine", "version": "v1alpha1" } }, "parameters": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/apis/infrastructure.nine.ch/v1alpha1/namespaces/{namespace}/cloudvirtualmachines/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "read the specified CloudVirtualMachine", "operationId": "readInfrastructureNineChV1alpha1NamespacedCloudVirtualMachine", "parameters": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "CloudVirtualMachine", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "replace the specified CloudVirtualMachine", "operationId": "replaceInfrastructureNineChV1alpha1NamespacedCloudVirtualMachine", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, { "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "CloudVirtualMachine", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "delete a CloudVirtualMachine", "operationId": "deleteInfrastructureNineChV1alpha1NamespacedCloudVirtualMachine", "parameters": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": "CloudVirtualMachine", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "CloudVirtualMachine" ], "summary": "partially update the specified CloudVirtualMachine", "operationId": "patchInfrastructureNineChV1alpha1NamespacedCloudVirtualMachine", "parameters": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "infrastructure.nine.ch", "kind": "CloudVirtualMachine", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the CloudVirtualMachine", "name": "name", "in": "path", "required": true }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/apis/networking.nine.ch/v1alpha1/namespaces/{namespace}/staticegresses": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "list objects of kind StaticEgress", "operationId": "listNetworkingNineChV1alpha1NamespacedStaticEgress", "parameters": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgressList" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "list", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "StaticEgress", "version": "v1alpha1" } }, "post": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "create a StaticEgress", "operationId": "createNetworkingNineChV1alpha1NamespacedStaticEgress", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, { "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "202": { "description": "Accepted", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "post", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "StaticEgress", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "delete collection of StaticEgress", "operationId": "deleteNetworkingNineChV1alpha1CollectionNamespacedStaticEgress", "parameters": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": "StaticEgress", "version": "v1alpha1" } }, "parameters": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/apis/networking.nine.ch/v1alpha1/namespaces/{namespace}/staticegresses/{name}": { "get": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "read the specified StaticEgress", "operationId": "readNetworkingNineChV1alpha1NamespacedStaticEgress", "parameters": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "get", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "StaticEgress", "version": "v1alpha1" } }, "put": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "replace the specified StaticEgress", "operationId": "replaceNetworkingNineChV1alpha1NamespacedStaticEgress", "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, { "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "201": { "description": "Created", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "put", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "StaticEgress", "version": "v1alpha1" } }, "delete": { "consumes": [ "application/json", "application/yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "delete a StaticEgress", "operationId": "deleteNetworkingNineChV1alpha1NamespacedStaticEgress", "parameters": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": "StaticEgress", "version": "v1alpha1" } }, "patch": { "consumes": [ "application/json-patch+json", "application/merge-patch+json", "application/apply-patch+yaml" ], "produces": [ "application/json", "application/yaml" ], "schemes": [ "https" ], "tags": [ "StaticEgress" ], "summary": "partially update the specified StaticEgress", "operationId": "patchNetworkingNineChV1alpha1NamespacedStaticEgress", "parameters": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "401": { "description": "Unauthorized" } }, "x-kubernetes-action": "patch", "x-kubernetes-group-version-kind": { "group": "networking.nine.ch", "kind": "StaticEgress", "version": "v1alpha1" } }, "parameters": [ { "uniqueItems": true, "type": "string", "description": "name of the StaticEgress", "name": "name", "in": "path", "required": true }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/allowWatchBookmarks-HC2hJt-J" }, { "$ref": "#/parameters/continue-QfD61s0i" }, { "$ref": "#/parameters/fieldSelector-xIcQKXFG" }, { "$ref": "#/parameters/labelSelector-5Zw57w4C" }, { "$ref": "#/parameters/limit-1NfNmdNH" }, { "$ref": "#/parameters/resourceVersion-5WAnf1kx" }, { "$ref": "#/parameters/resourceVersionMatch-t8XhRHeC" }, { "$ref": "#/parameters/sendInitialEvents-rLXlEK_k" }, { "$ref": "#/parameters/timeoutSeconds-yvYezaOC" }, { "$ref": "#/parameters/watch-XNNPZGbK" } ], "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": [ { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] }, "/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": [ { "$ref": "#/parameters/resourceVersion-5WAnf1kx" } ], "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" }, { "$ref": "#/parameters/fieldManager-Qy4HdaTW" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "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": [ { "$ref": "#/parameters/body-2Y1dVQaQ" }, { "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" }, { "$ref": "#/parameters/gracePeriodSeconds--K5HaBOS" }, { "$ref": "#/parameters/orphanDependents-uRB25kX5" }, { "$ref": "#/parameters/propagationPolicy-6jk3prlO" } ], "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": [ { "$ref": "#/parameters/body-78PwaGsr" }, { "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" }, { "$ref": "#/parameters/fieldManager-7c6nTn1T" }, { "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. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", "name": "fieldValidation", "in": "query" }, { "$ref": "#/parameters/force-tOGGb0Yi" } ], "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 }, { "$ref": "#/parameters/namespace-vgWSWtn3" }, { "$ref": "#/parameters/pretty-nN7o5FEq" } ] } }, "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" ] } } }, "dockerfileBuild": { "description": "DockerfileBuild contains settings for building with an existing Dockerfile", "type": "object", "properties": { "buildContext": { "description": "BuildContext defines the build context. If left empty, the application code root directory will be used as build context.", "type": "string" }, "dockerfilePath": { "description": "DockerfilePath specifies the path to the Dockerfile. If left empty a file named Dockerfile will be searched in the application code root directory.", "type": "string" }, "enabled": { "description": "Enabled defines if the Dockerfile build should be enabled", "type": "boolean", "x-kubernetes-validations": [ { "message": "Dockerfile builds cannot be enabled/disabled after creation of the application (field is immutable)", "rule": "self == oldSelf" } ] } } }, "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", "ruby-heroku" ] } }, "x-kubernetes-validations": [ { "message": "language can't be set if dockerfile builds are enabled.", "rule": "!(has(self.language) \u0026\u0026 self.dockerfileBuild.enabled)" } ] }, "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", "type": "object", "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" }, "stack": { "description": "Stack identifies the kpack stack used to build the image", "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", "type": "object", "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", "type": "object", "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" } }, "dockerfileBuild": { "description": "DockerfileBuild indicates if the build has been built using a dockerfile.", "type": "boolean" }, "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" }, "replicaName": { "description": "ReplicaName is the name of the replica.", "type": "string" }, "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", "type": "object", "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", "type": "object", "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", "type": "object", "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", "type": "object", "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", "type": "object", "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.CloudVirtualMachine": { "description": "CloudVirtualMachine is a virtual machine instance providing flexible scaling and a variety of Linux distributions.", "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": "CloudVirtualMachineSpec defines the desired state of a cloud VM.", "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": "CloudVirtualMachineParameters are the configurable fields of a CloudVirtualMachine.", "type": "object", "required": [ "location" ], "properties": { "bootDisk": { "description": "BootDisk that will be used to boot the VM from.", "type": "object", "required": [ "name", "size" ], "properties": { "name": { "description": "Name specifies the name of the disk. Used to identify a disk, changing the name of a disk means the old disk will be deleted and a new one will be created.", "type": "string" }, "size": { "description": "Size specifies the 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 } } }, "cloudConfig": { "description": "CloudConfig allows to pass custom cloud config data (https://cloudinit.readthedocs.io/en/latest/topics/format.html#cloud-config-data) to the cloud VM. If a CloudConfig is passed, the PublicKey parameter is ignored.", "type": "string", "x-kubernetes-validations": [ { "message": "Cloud Config is immutable after creation", "rule": "self == oldSelf" } ] }, "disks": { "description": "Disks specifies which additional disks to mount to the machine.", "type": "array", "items": { "description": "Disk describes a Disk that can be attached to a VM.", "type": "object", "required": [ "name", "size" ], "properties": { "name": { "description": "Name specifies the name of the disk. Used to identify a disk, changing the name of a disk means the old disk will be deleted and a new one will be created.", "type": "string" }, "size": { "description": "Size specifies the 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 } } }, "x-kubernetes-list-map-keys": [ "name" ], "x-kubernetes-list-type": "map" }, "hostname": { "description": "Hostname allows to set the hostname explicitly. If unset, the name of the resource will be used as the hostname. This does not affect the DNS name.", "type": "string", "x-kubernetes-validations": [ { "message": "Hostname is immutable after creation", "rule": "self == oldSelf" } ] }, "location": { "description": "Location specifies in which datacenter the VM 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 cloud vm.", "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-db-xs", "nine-db-s", "nine-db-m", "nine-db-l", "nine-db-xl", "nine-db-xxl" ] }, "os": { "description": "OS which should be used to boot the VM.", "type": "string", "enum": [ "ubuntu20.04", "ubuntu22.04", "ubuntu24.04", "rocky9" ], "x-kubernetes-validations": [ { "message": "OS is immutable after creation", "rule": "self == oldSelf" } ] }, "powerState": { "description": "PowerState specifies the power state of the cloud VM. A value of \"On\" turns the VM on, shutdown sends an ACPI signal to the VM to perform a clean shutdown and off forces the power off immediately.", "type": "string", "enum": [ "on", "shutdown", "off" ] }, "publicKeys": { "description": "PublicKeys specifies the SSH Public Keys that can be used to connect to the VM as root. The keys are expected to be in SSH format as defined in RFC4253.", "type": "array", "items": { "type": "string" }, "x-kubernetes-validations": [ { "message": "Public Key is immutable after creation", "rule": "self == oldSelf" } ] }, "rescue": { "description": "Rescue configures booting into a rescue live-OS for fixing a VM that is in an unbootable state.", "type": "object", "required": [ "enabled" ], "properties": { "enabled": { "description": "Enable enables booting into rescue. This will trigger an immediate reboot of the VM into a rescue live-OS. Set this to false to configure boot from the root disk again.", "type": "boolean" }, "publicKeys": { "description": "PublicKeys specifies additional SSH Public Keys that can be used to connect to the rescue OS as root. The keys are expected to be in SSH format as defined in RFC4253. If not specified, just the PublicKeys from the parameters will be used.", "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": "CloudVirtualMachineStatus represents the observed state of a cloud VM.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "CloudVirtualMachineObservation are the observable fields of a cloud VM.", "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" } } } } } }, "fqdn": { "description": "FQDN is the fully qualified domain name at which the VM is reachable at.", "type": "string" }, "ipAddress": { "description": "IPAddress is the public IPAddress for the VM.", "type": "string" }, "powerState": { "description": "PowerState indicates the observed power state of the VM.", "type": "string" }, "uuid": { "description": "UUID of the underlying virtual machine.", "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": "CloudVirtualMachine", "version": "v1alpha1" } ] }, "ch.nine.infrastructure.v1alpha1.CloudVirtualMachineList": { "description": "CloudVirtualMachineList is a list of CloudVirtualMachine", "type": "object", "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 cloudvirtualmachines. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.CloudVirtualMachine" } }, "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": "CloudVirtualMachineList", "version": "v1alpha1" } ] }, "ch.nine.infrastructure.v1alpha1.ClusterData": { "description": "ClusterData provides cluster information of the referenced KubernetesCluster resource.", "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": "ClusterDataSpec defines the desired state of ClusterData resource.", "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": "ClusterDataParameters are the configurable fields of a ClusterData resource.", "type": "object", "required": [ "clusterReference" ], "properties": { "clusterReference": { "description": "ClusterReference selects the KubernetesCluster of which the cluster data should be exposed", "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": "ClusterDataStatus represents the observed state of a ClusterData resource.", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "ClusterDataObservation are the observable fields of a ClusterData resource.", "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" } } }, "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": "ClusterData", "version": "v1alpha1" } ] }, "ch.nine.infrastructure.v1alpha1.ClusterDataList": { "description": "ClusterDataList is a list of ClusterData", "type": "object", "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 clusterdata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.infrastructure.v1alpha1.ClusterData" } }, "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": "ClusterDataList", "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", "type": "object", "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": { "auditLog": { "description": "AuditLog configures audit logging.", "type": "object", "properties": { "targets": { "description": "Targets to send the audit log to. The only supported target is Loki.", "type": "array", "maxItems": 1, "minItems": 0, "items": { "type": "object", "required": [ "group", "kind", "name" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" } } } } } }, "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-db-xs", "nine-db-s", "nine-db-m", "nine-db-l", "nine-db-xl", "nine-db-xxl" ] }, "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" }, "apiReady": { "description": "APIReady indicates if the API is ready for consumption.", "type": "boolean" }, "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 is the version of Kubernetes that this cluster is running.", "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", "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-db-xs", "nine-db-s", "nine-db-m", "nine-db-l", "nine-db-xl", "nine-db-xxl" ] }, "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 }, "auditLog": {} }, "nodePools": [ { "name": "production", "minNodes": 3, "maxNodes": 3, "machineType": "nine-standard-2" } ] } }, "status": { "atProvider": { "apiReady": false } } } }, "ch.nine.infrastructure.v1alpha1.KubernetesClusterList": { "description": "KubernetesClusterList is a list of KubernetesCluster", "type": "object", "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", "type": "object", "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" }, "hsts": { "description": "HSTS allows to configure settings for the \"HTTP Strict Transport Security\" (HSTS) headers", "type": "object", "properties": { "enabled": { "description": "Enabled enables/disables all HSTS headers. If not given all HSTS headers are enabled by default.", "type": "boolean" }, "includeSubdomains": { "description": "IncludeSubdomains allows to toggle the \"includeSubDomains\" field in the HSTS header (enabled by default).", "type": "boolean" }, "maxAge": { "description": "MaxAge sets the time that the browser should remember that this site is only to be accessed using HTTPS.", "type": "string" }, "preload": { "description": "Preload allows to toggle the HSTS preload feature.", "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", "type": "object", "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.networking.v1alpha1.StaticEgress": { "description": "StaticEgress describes a static egress configuration", "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 StaticEgressSpec defines the desired state of a StaticEgress", "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": "StaticEgressParameters are the configurable fields of a StaticEgress", "type": "object", "required": [ "target" ], "properties": { "disabled": { "description": "Disabled can be set to true to quickly disable the static egress without loosing the registered egress IP. egress IP.", "type": "boolean" }, "target": { "description": "Target specifies for which resource the static egress should be configured", "type": "object", "required": [ "group", "kind", "name" ], "properties": { "group": { "type": "string" }, "kind": { "type": "string" }, "name": { "description": "Name of the target.", "type": "string" } }, "x-kubernetes-validations": [ { "message": "Value is immutable", "rule": "self == oldSelf" } ] } } }, "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 StaticEgressStatus represents the observed state of a StaticEgress", "type": "object", "required": [ "atProvider" ], "properties": { "atProvider": { "description": "StaticEgressObservation are the observable fields of a static egress", "type": "object", "properties": { "address": { "description": "Address is the egress IP which will be used for all egressing traffic", "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" } } } }, "selectionLabel": { "description": "SelectorLabel needs to be set on pods in target clusters, so that all egressing traffic of the pod will be emitted with the egress IP address. Only supported by certain targets.", "type": "object", "required": [ "name", "value" ], "properties": { "name": { "description": "Name of the label.", "type": "string" }, "value": { "description": "Value of the label.", "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": "StaticEgress", "version": "v1alpha1" } ] }, "ch.nine.networking.v1alpha1.StaticEgressList": { "description": "StaticEgressList is a list of StaticEgress", "type": "object", "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 staticegresses. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "type": "array", "items": { "$ref": "#/definitions/ch.nine.networking.v1alpha1.StaticEgress" } }, "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": "StaticEgressList", "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", "type": "object", "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" } } } }, "enableAdminAccess": { "description": "EnableAdminAccess gives you admin permissions in the Grafana instance. Please note: Nine reserves the right to revoke admin access in future versions if the admin access is deemed a security or an operational risk.", "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 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", "type": "object", "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": { "allowedCIDRs": { "description": "AllowedCIDRs specify the allowed IP addresses, connecting to Loki. IPs are in CIDR format, e.g. 192.168.1.1/24 In addition to your IPs, we add all operational necessary IPs as well.", "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" }, "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": { "allowedCIDRs": null } }, "status": { "atProvider": {} } } }, "ch.nine.observability.v1alpha1.LokiList": { "description": "LokiList is a list of Loki", "type": "object", "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": { "access": { "description": "Access configures the access to the Prometheus instance.", "type": "object", "properties": { "internal": { "description": "Internal selects from which Pods in the cluster this Promtheus instance can be accessed.", "type": "object", "properties": { "enabled": { "description": "Enabled can be used to allow selected pods (see below) to connect to the Prometheus instance by using the internal Service URL found in the connection secret and status of the Prometheus resource. If `Enabled` is set to false, no internal access will be possible, no matter what was set in the `podSelector` or `namespaceSelector` fields.", "type": "boolean" }, "namespaceSelector": { "description": "NamespaceSelector selects the namespaces from which the `PodSelector` field will select. If left empty, all namespaces will be considered.", "type": "object", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "type": "array", "items": { "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" }, "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" } } } } }, "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" }, "podSelector": { "description": "PodSelector is a label selector which selects pods permitted to connect to Prometheus. If empty, all pods are allowed to connect to Prometheus. \n If NamespaceSelector is also set with some value, then only pods from within the namespaces selected by it are permitted.", "type": "object", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "type": "array", "items": { "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" }, "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" } } } } }, "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" } } }, "noExternalAccess": { "description": "NoExternalAccess removes the possibility to access this Prometheus instance from outside of the cluster. The Prometheus instance can not be used in Nine Grafana instances anymore. The Prometheus instance can still be accessed from Pods running in the cluster, if enabled.", "type": "boolean" } } }, "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": { "externalURL": { "description": "ExternalURL provides the URL to access this Prometheus instance from external of the cluster. The corresponding basic auth credentials are exposed in the referenced connection secret (`spec.resourceSpec.writeConnectionSecretToRef`). Access can be disabled by using `spec.forProvider.access.noExternalAccess`.", "type": "string" }, "internalURL": { "description": "InternalURL provides the URL to access the Prometheus instance from internal of the referenced cluster. Needs to be enabled via `spec.forProvider.access.internal.enabled`.", "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": "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" } ], "access": { "internal": { "enabled": false, "podSelector": {}, "namespaceSelector": {} }, "noExternalAccess": false } } }, "status": { "atProvider": {} } } }, "ch.nine.observability.v1alpha1.PrometheusList": { "description": "PrometheusList is a list of Prometheus", "type": "object", "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", "type": "object", "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", "type": "object", "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", "type": "object", "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", "type": "object", "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 v2 are only compatible with bucketusers also on v2.", "type": "string", "enum": [ "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", "type": "object", "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", "propert